Utility.Escape
- Aktualisiert2025-07-21
- 1 Minute(n) Lesezeit
Utility.Escape
Syntax
Utility.Escape( stringToEscape, options)
Return Value
The escaped string.
Purpose
Replaces special characters with the following escaping sequences:
| Sequence | Purpose |
|---|---|
| \n | New line |
| \r | Carriage return |
| \r\n | Carriage return/new line |
| \" | Quotation marks |
| \\ | Backslash character |
| \t | Tab |
Parameters
stringToEscape As String
[In] Specifies the string to escape.
options As Long
[In] Specifies the EscapingOptions constants to surround the returned string in quotation marks.