EscapeSend()

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

EscapeSend()

OutputVar := instance.EscapeSend()

EscapeSend()

Escape current instance of MfString for use with the send command and returns a copy.

Returns

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

Remarks

Send command interprets some chars different such as # ! ^ + when sending strings. These characters are escaped to prepare them for use with the send command

Example

; if clipboard contained #WhatTime !My hashtag
myStr := new MfString(Clipboard)
sendText := myStr.EscapeSend() ; {#}WhatTime {!}My hashtag
Send, % sendText