请帮我在Jmeter中使用Regex Extractor
" StatusDate \" style = \" text-align:left \" \ u003e10 / 31/2017 2017 3:17:00 PM \ u003c是响应数据
我希望将时间提取到字符串10/31/2017 3:17:00 PM。
答案 0 :(得分:0)
您可以使用正则表达式,例如:
\d{2}\/\d{2}\/\d{4}\s+\d{1,2}:\d{1,2}:\d{1,2}\s+(AM|PM)
查看演示here。
现在我不确定这是否是您输入数据类型的最标准值,因为您只提供了一个示例。