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"\\\\b"
form feedRepresented As "\f"
Escaped Version"\\\\f"
tabRepresented As"\t"
Escaped Version"\\\\t"
carraige returnRepresented As"\r"
Escaped Version"\\\\r"
newlineRepresented As"\n"
Escaped Version"\\\\n"
backslashRepresented As

"\\\\"

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

Macro: Escaping Invalid Characters

...