Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在JMeter中使用正则表达式提取器1234-1234-1234-1234的响应中提取一个字符串这个数字纯数字* 但我猜它不会工作,因为它在. 以及不知道如何逃脱或解决。( )
1234-1234-1234-1234
(
)
有任何想法吗?
提取字符串示例: OnClick="buttonid('1234-1234-1234-1234')"
OnClick="buttonid('1234-1234-1234-1234')"
正则表达式提取示例: OnClick="buttonid('(.+?)')"
OnClick="buttonid('(.+?)')"
试试这个正则表达式: OnClick="buttonid('([^']+?)')"
我们可以使用简单的正则表达式格式来提取值
Regex : OnClick="buttonid\('(.+)'