Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns a string that escapes all regular expression characters.
regex_quote(
string)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
string | string |
✔️ | The string to escape. |
Returns string where all regex expression characters are escaped.
print result = regex_quote('(so$me.Te^xt)')
Output
result |
---|
\(so\\$me\\.Te\\^xt\\) |