meta data for this page
  •  

ibec_AnsiLowerCase

Converts a string to lower case.

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

Syntax

  function ibec_AnsiLowerCase ( s: varchar) : varchar;

Example

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