Utility.Escape

Syntax

Utility.Escape( stringToEscape, options)

Return Value

String

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.

See Also

Engine.Utility

EscapingOptions

Utility.Unescape