UnEscape()

Namespace ›› System ›› MfString ›› Methods ››
Parent Previous Next

UnEscape()

OutputVar := instance.UnEscape()

UnEscape()

UnEscapes current instance of MfString that is encoded for AutoHotkey and returns a copy.

Returns

Returns string copy that has been un-escaped.
If ReturnAsObject Property for this instance is true then returns new MfString otherwise returns var containing string.

UnEscape(EscapeChar)

UnEscapes current instance of MfString that is encoded for AutoHotkey and returns a copy.

Returns

Returns string copy that has been un-escaped by EscaptChar.
If ReturnAsObject Property for this instance is true then returns MfString otherwise returns var containing string.

Parameters

EscapeChar

The MfChar to use to escape with. Default to `

Throws

Throws MfArgumentNullException if EscapeChar is null.

Remarks

UnEscapes ,%`; and double quotes

Related

Escape()