Insert a break line in a text or string.
1 string.nl
<string.nl />
Returns | |
---|---|
Type | Description |
string | "\n" |
Remarks
When using the function string.nl in the middle of a string of characters, this is divided in two parts separated by a break line.
Example
Show on screen a string using the function string.nl.
Copy
<xsql-script name='string_nl'> <body> <set name='a'>STR1</set> <set name='b'> <string> String <string.nl /> <a/> <string.nl /> with break line. </string> </set> <println><b/></println> </body> </xsql-script>
Returns:
Copy
String STR1 with break line.