Using the %cr, %crlf, and %lf Variables |
Top Previous Next |
When concatenating strings using the SET script command, the %cr, %crlf, and %lf variables may be used to add carriage control to a string.
For example, the following command builds a two line string.
SET my_var "line #1" & %crlf & "line #2"
|