User`s guide
uHexEncode
136 Sybase IQ ETL 4.1
uHexEncode
Description Encodes every character of a string into its hexadecimal notation
Syntax string uHexEncode(input)
Parameters
string input
The string to encode.
Examples To convert a string to hex values:
uHexEncode("170") // returns "3313730"
uHexEncode(170) // returns "3313730"
uToUnicode
Description Converts a string into Unicode.
Syntax string uToUnicode (input , [codepage]
Parameters
string input
The input string.
uURIDecode
Description Returns a decoded string replacing the escape sequences with their original
values.
Syntax string uURIDecode(uri)
Parameters
string uri
The URI to decode.
Examples To decode a URI:
uURIDecode("www.sybase.com/filename%20with%20spaces.tx
t") // returns "www.sybase.com/filename with
spaces.txt"