MAINSAIL Language Manual, Section 38.20

previous   next   top   contents   index   framed top   this page unframed


38.20. isLowerCase

Figure 38–17. isLowerCase
$BUILTIN
BOOLEAN
PROCEDURE   isLowerCase (INTEGER char);

isLowerCase returns TRUE if and only if char is the character code for a lowercase letter, i.e., one of the lowercase letters a through z.

Example 38–18. Use of isLowerCase
isLowerCase('b') = TRUE
isLowerCase('M') = FALSE
isLowerCase('#') = FALSE
isLowerCase('9') = FALSE


previous   next   top   contents   index   framed top   this page unframed

MAINSAIL Language Manual, Section 38.20