strspecial

Converts special characters.

Format

strspecial <strvar>

Remarks

Converts the following characters in the <strvar> to special characters.

input output
\\ "\"
\n line feed
\t tab

Example

str = "AB\tCD\nEF\\nGH"
strspecial str
messagebox str "special"