我想检查此序列在UFT(012345)的网页中出现的次数。基本上左括号和右括号之间的任何6位数。我想弄清楚这个(012345)在页面中出现的次数。
到目前为止我所拥有的是:
Set myReg = new regexp
myReg.pattern = '(' [0-9]+ ')'
Set k = Browser("My Webpage).Page("My Index").ChildObjects(myReg)
msgbox k.count
这不起作用。有人能让我走上正确的道路吗?
答案 0 :(得分:1)
阅读参考:
下一步纯 this
代码段可以提供帮助:
class ThisExample{
private int aNumber;
public void setANumber(int aNumber){
//Here is is necessary to prefix with 'this' to clarify
//access to the class instance property 'aNumber'
this.aNumber = aNumber;
}
}