From Clomosy Docs

Revision as of 15:16, 24 December 2024 by ClomosyAdmin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Returns the character for a specified ASCII value.

Chr returns the character with the ordinal value (ASCII value) of the byte-type expression, X. The Byte parameter is an unsigned integer value large enough to represent a character. Word or UInt16 is also appropriate, because now that the string type is Unicode, a character is represented by two bytes.

Example

 var
   tab  : char;
   crlf : string;
 
 {
   // Show the use of Chr
   tab = Chr(124);
   crlf = Chr(13)+Chr(10);
   ShowMessage('Hello '+tab+' World');
   ShowMessage('Hello'+crlf+'World');
 }

Output:

See Also