String 
Review the list of String functions.
- uAsc, uUnicode
Returns unicode character value of a specified character. 
- uChr, uUniChr
Returns the Unicode string corresponding to the given number, or formats a string 
- uCap
Returns the capitalized representation of a string. In other words, the first letter of each word in the string is capitalized. 
- uCon, uConcat
Concatenates all given parameters into a single string 
- uJoin
Concatenates a delimited string with special null and empty value handling 
- uLeft
Returns the leftmost N characters from a string 
- uLength, uLen
Returns the length of a string 
- uSubstr, uMid
Returns a part of a string 
- uLPos
Find the first position of a substring within a string. A result of zero indicates that the substring has not been found. 
- uLower, uLow
Returns the input string in lower case letters 
- uLStuff
Fills the left side of a string up to specified length 
- uLTrim
Removes characters from the left side of the string. If the second parameter is omitted, it defaults to a space character (ASCII 32). 
- uRepeat
Returns the given string repeated N times 
- uReplace
Replaces parts of a string 
- uReverse
Reverses a string 
- uRight
Returns the rightmost N characters from a string 
- uRPos
Find the last position of a substring within a string 
- uRStuff
Fills the right side of a string up to specified length 
- uRTrim
Removes characters from the right side of the string 
- uTrim
Removes characters from both sides of the string 
- uUpper, uUpp
Returns the input string in upper case letters 
 
Created May 24, 2011. Send feedback on this help topic to Sybase Technical Publications:
pubs@sybase.com