Determines whether the leftmost character of the specified character expression is a lowercase alphabetic character.
ISLOWER(cExpression) |
Parameters
- cExpression
- Specifies the character expression that ISLOWER(В ) tests. ISLOWER(В ) ignores any characters after the first character in cExpression.
Return Value
Logical
Remarks
ISLOWER(В ) returns true (.T.) if the leftmost character in the specified character expression is a lowercase alphabetic character; otherwise, ISLOWER(В ) returns false (.F.).
Example
В | Copy Code |
---|---|
CLEAR ? ISLOWER('redmond') && Displays .T. ? ISLOWER('Redmond') && Displays .F. |