chinafree 发表于 2010-3-31 13:59:24

正则表达示

我把Browser("title:=51Testing软件测试网-中国软件测试人的精神家园").Page("title:=51Testing软件测试网-中国软件测试人的精神家园").Image("file name:=tip.jpg").highlight

改写Browser("title:=51Testing软件测试网-中国软件测试人的精神家园").Page("title:=51Testing软件测试网-中国软件测试人的精神家园").Image("file name:=tip.*").highlight

测试通过(用的是通配符的方式)

而改成 正则表达示,如下

Browser("title:=\w+\D+\w+精神家园").Page("title:=\w+\D+\w+精神家园").Image("file name:=b\w+p\.jpg").highlight

测试就通不过呢。

我是参考 http://relevantcodes.com/descriptive-programming-dp-concepts-2-regular-expressions/ 这里的方法

Using the last few characters of the title with first and last characters of the image
Browser("title:=\w+\D+\w+ours").Page("title:=\w+\D+\w+ours").Image("file name:=b\w+2\.gif").Highlight

请教高手,是怎么回事,我哪里改错了

Haereticus 发表于 2010-3-31 16:30:12

明显正则表达式不对,title:=\w+\D+\w+精神家园").匹配的是一个 “XXX精神家园”的字符串,b\w+p\.jpg 匹配的是一个“bXp.jpg”的字符串。
Browser("title:=.*精神家园").Page("title:=.*精神家园").Image("filename:=t\wp.jpg").highlight 测试通过

chinafree 发表于 2010-3-31 16:50:17

谢谢Haereticus的解答,请问这个正则表达式的相关资料哪里有呢

\w+\D+\w中的\w,\D 分别是什么意思呢

[ 本帖最后由 chinafree 于 2010-3-31 16:51 编辑 ]

TIB 发表于 2010-4-8 10:55:11

\w 匹配字母或数字或下划线或汉字
\d 匹配数字

参考:
http://deerchao.net/tutorials/regex/regex.htm
http://www.regular-expressions.info/
页: [1]
查看完整版本: 正则表达示