Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.  

CharacterTypeEscape string

backspace

Represented As "\b"
Escaped Version
Escaped "\\\\b"
form feedRepresented As "\f"
Escaped
Version
"\\\\f"
tabRepresented As"\t"
Escaped Version
Escaped "\\\\t"
carraige returnRepresented As"\r"
Escaped Version
Escaped "\\\\r"
newlineRepresented As"\n"
Escaped Version
Escaped "\\\\n"
backslashRepresented As

"\\\\"

Escaped Version
Escaped "\\\\\\\\"
double quoteRepresented As'"'
Escaped Version
Escaped '\\\\"'

Macro: Escaping Invalid Characters

...