标签:info 个数 前置 shell 正则表达 sel match ++ while
然后创建一个beanshell前置处理器,脚本如下:
import java.util.regex.Matcher; import java.util.regex.Pattern; ip = vars.get("ip"); subs = "\"ip\""; Pattern pattern = Pattern.compile(subs); Matcher matcher = pattern.matcher(ip); int count=0; while(matcher.find()){ count++; } System.out.println(count);
执行Jmeter,控制台就打印出数值了
标签:info 个数 前置 shell 正则表达 sel match ++ while
原文地址:https://www.cnblogs.com/111testing/p/10391940.html