luosiguai 发表于 2014-8-11 10:53:35

请问一下正则表达式的写法

我不太会正则表达式,在网上照猫画虎的弄了一个,可惜还是有点问题,请求大家帮助!

#include <Array.au3>
$tt = "<table><tr><td><p><a href=""###"" id=""a_008_20140812XX上午"" href=""#"" onclick=""show(this.id,'质检部','张三','2014-08-12',1,0)"">2014-08-12</a>(<span style=""color:red"">37</span>)</p>&nbsp;</td><td><p><a href=""###"" id=""a_008_20140812XX下午"" href=""#"" onclick=""show(this.id,'质检部','张三','2014-08-12',3,0)"">2014-08-12</a>(<span style=""color:red"">23</span>)</p>&nbsp;</td></tr></table>"
$tt1 = "2014-08-12"
$codeArray = StringRegExp($tt,"id\s*=\s*\"".*_*_(.*?)\""\s*href\s*=\s*\""#\""\s*onclick\s*=\s*\""show.*,*,*,'" & $tt1 & "',(.*?),(.*?)\)",1)
_ArrayDisplay($codeArray)
==============================
匹配到了2条结果,现在显示的是最后一条即“a_008_20140812XX下午”,我想找到第一条“a_008_20140812XX上午”,应该怎么修改一下呢?前提是不修改匹配条件,不能把条件直接改成上午去匹配,十分感谢

shqf 发表于 2014-8-11 12:01:03

没理解你想要得到的内容是什么。

haijie1223 发表于 2014-8-11 12:28:09

id=""(.*?)""

zxhou1 发表于 2014-8-12 09:14:29

{:face (327):}飘过

austere 发表于 2014-8-12 10:28:26

回复 3# haijie1223


    赞一个....再说下,;楼主表述问题不全,代码惨不忍睹~~·
页: [1]
查看完整版本: 请问一下正则表达式的写法