meta data for this page
  •  

ibec_AnsiUpperCase

Converts a string to upper case.

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).

Syntax

 function ibec_AnsiUpperCase ( const s : varchar) : varchar;

Example

 execute ibeblock
 as
 begin
   Str = ibec_AnsiUpperCase('Just A Test');
   ibec_ShowMessage(Str);
 end;