Versions Compared

Key

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

...

field_mark = Char(254)

See also

Seq()

Example

Code Block
/* In the following example, percent is assigned the
ASCII string value of the % symbol (decimal 37). */
percent = Char(37)
 
 
/* The following example shows two ways to specify a carriage return/line feed */
CRLF = Char(13): Char(10)    ;* decimal
CRLF = \0D0A\                ;* hex