Poznámka
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete sa skúsiť prihlásiť alebo zmeniť adresáre.
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete skúsiť zmeniť adresáre.
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\) |