Chr( )
| Action: | Insert special characters, such as carriage
returns, in a string. |
| Syntax: | Chr (character code) |
| Parameters: |
Character
code
|
| Returns: |
The
string representation of the character code. |
| See Also: |
Asc( ) |
| Example: |
$Message= "Hello " + @USERID
+ chr(13) + chr(10) + "Welcome to our network." |