ISLOWER()

Checks if leftmost character is an lowercased letter.

Syntax

ISLOWER( <cString> ) --> lLower

Arguments

<cString> Any character string

Returns

lLower Logical true (.T.) or false (.F.).

Description

This function takes the caracter string <cString> and checks to see if the leftmost character is a lowercased letter.If so, the function will return a logical true (.T.);otherwise, it will return a logical false (.F.).
Examples
      ? islower( 'ABCde' )      // .F.
      ? islower( 'aBCde' )      // .T.
Status

Ready

Compliance

This function is CA-Clipper compliant

Platforms

All

Files

Library is rtl

See Also