Chr( )

Action: Insert special characters, such as carriage returns, in a string.
 
Syntax: Chr (character code)
 
Parameters: Character code

A numeric expression representing the character code to insert.

Returns: The string representation of the character code.
 
See Also: Asc( )
 
Example:

$Message= "Hello " + @USERID + chr(13) + chr(10) + "Welcome to our network."