创建正则表达式以检查出现次数

时间:2016-04-22 18:16:44

标签: vbscript hp-uft

我想检查此序列在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

这不起作用。有人能让我走上正确的道路吗?

1 个答案:

答案 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; 
    }
}