...
When writing expressions, macros or scripts you may need to enter a character that has special meaning. For example, a string could include a double-quote, but in the expression PhixFlow will read this as the end of the string. To tell PhixFlow to ignore a special character, you can use the backslash character.
Character | Type | Escape string |
---|
backspace | Represented As | "\b" |
Escaped VersionEscaped | "\\\\b" |
form feed | Represented As | "\f" |
Escaped |
Version | "\\\\f" |
tab | Represented As | "\t" |
Escaped VersionEscaped | "\\\\t" |
carraige return | Represented As | "\r" |
Escaped VersionEscaped | "\\\\r" |
newline | Represented As | "\n" |
Escaped VersionEscaped | "\\\\n" |
backslash | Represented As | "\\\\"
|
Escaped VersionEscaped | "\\\\\\\\" |
double quote | Represented As | '"' |
Escaped VersionMacro: Escaping Invalid Characters
...