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