Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Force 4.0 Reference - islower() determine if a string begins in lower case http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 islower()           Determine if a string begins in lower case
------------------------------------------------------------------------------
 Declaration
   string.hdr

 Syntax
   func logical islower extern
   param const char cString

 Arguments
   cString is a character string.

 Return
   A logical indicating if the input string begins with a lower case letter.

 Description
   The islower() function returns .t. if the first character of cString
   is a lowercase letter.

   The function also respects accented characters, e. g. the . character is
   considered to be a legal lowercase letter.

 Example
   #define EXAMPLE_STRING
   #include example.hdr

   proc Test_islower
   ? islower( "Lloyd Tabb" )             // prints .f.
   ? islower( "lloyd tabb" )             // prints .t.
   ? islower( "   lloyd tabb" )          // prints .f.
   ? islower( "1234 south street" )      // prints .f.
   endproc

   proc main
   Test_islower()
   endproc

See Also: isupper()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson