- Function StringToLower(text)
StringToLower
The function StringToLower
converts all characters of a string to
lower case.
StringToLower(
text ! (input) a scalar string expression
)
Arguments
- text
The string that you want to convert to lower case characters.
Return Value
The function returns the lower case string.
Example
The code:
sp_str := "hello HELLO";
sp_res := StringToLower( sp_str );
display sp_res ; ! sp_res := "hello hello" ;
See also
The functions StringToUpper
, StringCapitalize
.