当前位置:Gxlcms > PHP教程 > 求一正则婚配规则写法

求一正则婚配规则写法

时间:2021-07-01 10:21:17 帮助过:27人阅读

求一正则匹配规则写法
这个页面的 HTML代码中:http://www.vancouvergasprices.com/GasPriceSearch.aspx?typ=adv&fuel=A&srch=1&state=BC&area=Vancouver&site=Vancouver&tme_limit=24

要找到一个匹配



红色文字内容是不固定的。

我的规则不行:/.*<\/div>/siU 不知道错在哪

------解决方案--------------------
/.*<\/div><\/a>/siU
这样呢?

------解决方案--------------------
你要什么结果呢?
/.*<\/a>/siU

------解决方案--------------------
探讨
这个页面的 HTML代码中:http://www.vancouvergasprices.com/GasPriceSearch.aspx?typ=adv&fuel=A&srch=1&state=BC&area=Vancouver&site=Vancouver&tme_limit=24

要找到一个匹配


------解决方案--------------------
/[\s\S]*<\/div>/iU

这样呢?

人气教程排行