QTP正则表达式
Dim matches,reObj,alltext,balltext = Browser("xxx").Page("xxx").Frame("Frame").WebElement("xxx").GetROProperty("innertext")
set reObj = New RegExp
reObj.Pattern = "/d+/d{6}/D+"
set matches = reObj.execute(alltext)
如上,怎样获取 matches 内,成功匹配的字符串个数 regex=ur"/z" #if re.match(regex,subject):
do_something()
else:
do_anotherthing()
可以自己计数吧:
dim count
count =0
For Each match in matches
count=count+1
Next
jingzizx 发表于 2015-7-9 13:07
可以自己计数吧:
dim count
count =0
最终用的你这个方法,成功了
页:
[1]