EscapeWild(
string:string,
[string:flags]
)
→ string
Escapes all wildcard characters in the input string and returns the result.
The optional flags are:
r | escape characters used in regular expressions |
b | double all backslashes |
n | double backslashes that come before the letter 'n' |
Example:
Output(EscapeWild("*.*")); --> '*.'*