ibec_AnsiUpperCase
Converts a string to upper case.
Syntax
function ibec_AnsiUpperCase ( const s : varchar) : varchar;
Description
The ibec_AnsiUpperCase function returns a string that is a copy of s, converted to upper case. The conversion uses the current Windows locale.
Note: This function also supports multi-byte character sets (MBCS).
Example
execute ibeblock as begin Str = ibec_AnsiUpperCase('Just A Test'); ibec_ShowMessage(Str); end;
See also:
ibec_AnsiLowerCase
back to top of page
<< ibec_AnsiLowerCase | IBEBlock | ibec_Concat >>