我试图从动态边界获取值。下面给出了源代码和代码段。
name="pvUnitPriceInclTax242" type="text" value="30.0000"
web_reg_save_param_ex("ParamName=pvUnitPriceInclTaxValue",
"RegExp=name=\"pvUnitPriceInclTax[0-9]+\" type=\"text\" value=\"([0-9]+\.[0-9]+)\"",
LAST);
我检查了正则表达式here以上,并且其工作正常。但是在Loadrunner中运行时会出现以下错误。
The "RegExp=name="pvUnitPriceInclTax[0-9]+" type="text" value="([0-9]+.[0-9]+)"" argument (number 2) is unrecognized or misplaced
因为Loadrunner使用PCRE,我不知道它为什么会发生。有人请帮我解决这个问题。