Conversion of a text in UNIX format to DOS format.
1 string.unix2dos
<string.unix2dos>
<text /> !
</string.unix2dos>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Etext | string |
Returns | |
---|---|
Type | Description |
string | The text in UNIX format. |
Exceptions
requires 1 arguments, received: ...
The entry parameter has not been specified.
Example
Conversion of a text in UNIX format to DOS format.
Copy
<xsql-script name='string_unix2dos'> <body> <set name='text'> <string>Hello World</string> </set> <println><string.unix2dos ><text /></string.unix2dos></println> </body> </xsql-script>