ROWS: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Execution Time(sec.): 0.000005 Raw Match Pattern: <img\\s[^>]*\\bsrc=(?:(?:([\'\"])((?:(?!\\1|\\?).)*))|([^\\s?>]*)) PHP Code Example: <?php $sourcestring="your source string"; preg_match_all('/<img\\s[^>]*\\bsrc=(?:(?:([\'\"])((?:(?!\\1|\\?).)*))|([^\\s?>]*))/is',$sourcestring,$matches); echo "<pre>".print_r($matches,true); ?> Matches Found: NO MATCHES.