我有这个字符串:
$string = '<div class="displayEmbededImage" sourcefile="http://site.com/images/myImage.jpg" style="width:200px;"><p>Some text goes here</p></div>';
我需要一个正则表达式,它将选择源文件的内容并像这样返回它:
$parern = '/<div(.*)sourcefile="([^"]+)"(.*)>(.*)<\/div>/s';
preg_replace($pattern, '<img src="$1">', $string);
这就是我到目前为止所拥有的,但还没有完全正确