Re: Help with preg_match_all regex for alt tags
- From: nospam@xxxxxxxxxxxxx (Shawn McKenzie)
- Date: Tue, 29 Apr 2008 15:24:44 -0500
Joe Harman wrote:
Hey y'all ... i am having alittle trouble with this regex for finding
ALT tags for images...
Here is my statement
--------------------------------------------------------------------------------------------------------------------------------
preg_match_all("'alt[^>]*?>.*?[^>]'si", $output, $alt_tags);
Evaluating
--------------------------------------------------------------------------------------------------------------------------------
[other html code]... <img src="images/race-parts_wheels-tires.jpg"
vspace="2" border="0" alt="Wheel & Tire Acc" /> ...[other html code]
I am currently getting
--------------------------------------------------------------------------------------------------------------------------------
alt="Wheel & Tire Acc" /><
I want this result
--------------------------------------------------------------------------------------------------------------------------------
alt="Shopping Cart"
Thanks for your help
preg_match_all('/alt="[^"]*["]/i', $output, $alt_tags);
.
- References:
- Help with preg_match_all regex for alt tags
- From: "Joe Harman"
- Help with preg_match_all regex for alt tags
- Prev by Date: Fun with SOAP.
- Next by Date: Question regarding fopen
- Previous by thread: Re: [PHP] Help with preg_match_all regex for alt tags
- Next by thread: Fun with SOAP.
- Index(es):