Märkus
Juurdepääs sellele lehele nõuab autoriseerimist. Võite proovida sisse logida või kausta vahetada.
Juurdepääs sellele lehele nõuab autoriseerimist. Võite proovida kausta vahetada.
Applies to: ✅ Microsoft Fabric ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Returns a string that escapes all regular expression characters.
Syntax
regex_quote(
string)
Learn more about syntax conventions.
Parameters
Name | Type | Required | Description |
---|---|---|---|
string | string |
✔️ | The string to escape. |
Returns
Returns string where all regex expression characters are escaped.
Example
print result = regex_quote('(so$me.Te^xt)')
Output
result |
---|
\(so\$me\.Te\^xt\) |