Insert a character in blank.
1 string.space
<string.space />
Returns | |
---|---|
Type | Description |
string | " " |
Example
Show on screen a string with a space using the function string.space.
Copy
<xsql-script name='string_space'> <body> <set name='a'>STR1</set> <set name='b'> <string> String<string.space /><a/><string.space />with space. </string> </set> <println><b /></println> </body> </xsql-script>
Returns:
Copy
String STR1 with space.