我有一个字符串,在其中我有一个图像:
"<p><img src="http://yahoo.com/testfolder/userdata/editoruploadimages/confused man.jpg" /></p>"
我无法使用正则表达式获取图像 URL。我的代码是:
preg_match_all("/src=([^\\s]+)/", $questArr_str, $images);
此代码在遇到图像名称中的空格时停止执行。它只返回"http://yahoo.com/testfolder/userdata/editoruploadimages/confused
返回的字符串应该是:
"http://yahoo.com/testfolder/userdata/editoruploadimages/confused man.jpg"