#include <Array.au3>
$sText = '</div>' & @CRLF & _
'<iframe id="ifm0" frameborder="0" width="810" scrolling="no" height="810" style="top: 0px; left:0px;" src="http://apps.manyou.com/1061199"></iframe>' & @CRLF & _
"</div>'"
$aRe = StringRegExp($sText, '(?s).+?left:0px;" src="(.*?)".+', 3)
_ArrayDisplay($aRe, "符合src=“xxxx”类型的内容")
能找到符合的内容,有显示
但是下面的就不行了,找不到符合的。问题是上面的内容就是我从网页源代码中摘出来的,应该都可以才对啊#include <Array.au3>
#include <IE.au3>
$oIE = _IECreate("http://www.iopq.com/userapp-app-id-1061199.html")
$sText = _IEBodyReadHTML ($oIE) ;读取网页的源文件
$aRe = StringRegExp($sText, '(?s).+?left:0px;" src="(.*?)".+', 3)
_ArrayDisplay($aRe, "符合src=“xxxx”类型的内容")
|