Forum Discussion
Emilian Ertel
May 28, 2018Copper Contributor
regex matching for multi-line strings
According to the documentation (https://docs.loganalytics.io/docs/Language-Reference/References/Regular-Expressions-syntax😞 "Flag syntax is xyz (set) or -xyz (clear) or xy-z (set xy, clear z)." ...
- May 30, 2018
The solution is:
| where Message matches regex "(?ms)^Hello.*\\s*.*line.*$"
Thanks Yoni !
Emilian Ertel
May 30, 2018Copper Contributor
The solution is:
| where Message matches regex "(?ms)^Hello.*\\s*.*line.*$"
Thanks Yoni !