JMeter 正则表达式 - 删除前导空格

JMeter Regular Expression - Remove leading spaces

我有一个捕获 17 个匹配项的正则表达式。但这些匹配还包括空格(前导或尾随)。

尝试使用 [\s*]。但是,一些空间仍然存在。

附上截图供大家参考。

请帮忙。

此致, 阿吉特

enter image description here

enter image description here

这个link可能有帮助:Regex - Trimming whitespace from start and end of line

\S(.*\S)? 应该 trim 前导和尾随空格

如果不查看您的回复数据(至少部分),很难得出一个全面的答案

试试下面的正则表达式:

edison-system?\s*(.+?)?\s*?/

其中:

  • ?\s 表示可选空格
  • + - 零次或多次

更多信息: