ibec_AnsiLowerCase

Converts a string to lower case.

Syntax

 function ibec_AnsiLowerCase ( s: varchar) : varchar;

Description

The ibec_AnsiLowerCase function returns a string that is a copy of s, converted to upper case. The conversion uses the current Windows locale.

Note: This function supports multi-byte character sets (MBCS).

Example

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

See also:
ibec_AnsiUpperCase

back to top of page
<< ibec_Explode | IBEBlock | ibec_AnsiUpperCase >>