Cicode Programming Reference > Converting and Formatting Cicode Variables > Escape Sequences (String Formatting Commands)

Escape Sequences (String Formatting Commands)

Cicode supports several escape sequences that you can use in text strings for custom formatting of the string. By using the appropriate Cicode escape sequences listed below you can format the string display to do such things as divide onto separate lines at specific positions, insert tab spaces, insert quotes, or to display Hexadecimal numbers.

Cicode escape sequences are preceded by a caret ( ^ ) character. The caret character is interpreted as a special instruction, and together with the characters immediately following it, are treated as an Cicode escape sequence formatting command. The escape sequences used in Cicode are:

^b

backspace

^f

form feed

^n

new line

^t

horizontal tab

^v

vertical tab

^'

single quote

^"

double quote

^^

caret

^r

carriage return

^0xhh

where hh is a hexadecimal number (for example, ^0x1A)

See Also

Converting and Formatting Cicode Variables

Using Cicode Files