Archive for the tag 'regex'

Aug 11 2008

Finding tag through regex

Published by Gaurav Mishra under programming

I am saving this for my reference , A post with all commonly used regex, first one to go is finding <img> tag through php using regex.

$pattern = ‘/<img[^>]+src[\\s=\'"]‘;
$pattern .= ‘+([^"\'>\\s]+)/is’;

if(preg_match($pattern,$subject,$match))
{
echo $match[0];
}


2 responses so far

FireStats icon Powered by FireStats