Insert a line feed in a text or string.
1 string.lf
<string.lf>
<value /> !
</string.lf>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Evalue | string |
Returns | |
---|---|
Type | Description |
string | "\n" |
Remarks
When using the function string.lf in the middle of a string of characters, this is divided in two parts separated by a line feed.
Example
Show by screen a string using the function string.lf.
Copy
<xsql-script name='string_lf'> <body> <set name='a'>STR1</set> <set name='b'> <string> String <string.lf /> <a/> <string.lf /> with line feed. </string> </set> <println><b/></println> </body> </xsql-script>
Returns:
Copy
String STR1 with line feed.