Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

extract(regular expression): returns part of the string that matches the parenthesized section of the regular expression.
{{ message.extract(/Host: (\S+)/) }}

Learn more about the extract method.

Info

Regex match operations has 10 seconds timeout limit. If it takes more than 10 seconds, it returns "null"string.

...