ISLO(1)
PURPOSE
This function will determine whether the first character of a field is a lower case alphanumeric character (a-z), or something else.
PARTS
1 f/c/e | Required - Field to check, must be of type A. |
RETURN TYPE - L
If the first character is from a-z (lower case), the function will return .T., otherwise .F.
SEE ALSO
EXAMPLE
define x type a size 10
define y type l
x = 'SAMPLE'
y = islo(x)
// y = .F.
x = 'sample'
y = islo(x)
// y = .T.
Page url: http://www.cassoftware.com/tas/manual/ischarlowercase().htm