isLower

isLower(): Boolean;

The isLower method of the Character primitive type returns true if the receiver represents a lowercase letter for the current language setting.

The code fragment in the following example shows the use of the isLower method.

if count <= str.length and str[count].Character.isLower then
    str[count] := str[count].Character.toUpper;
endif;