IsUpper()

ISUPPER()

Checks if leftmost character is an uppercased letter.

Syntax

      ISUPPER( <cString> ) --> lUpper

Arguments

<cString> Any character string

Returns

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

Description

This function checks to see if the leftmost character if <cString> is a uppercased letter. If so, the function will return a logical true (.T.); otherwise, it will return a logical false (.F.).

Examples

      ? ISUPPER( "Abcde" )    // .T.
      ? ISUPPER( "abcde" )    // .F.

Compliance

Clipper

Platforms

All

Files

Library is rtl

Seealso

ISALPHA(), ISLOWER(), ISDIGIT(), LOWER(), UPPER()

4 responses to “IsUpper()

  1. Pingback: Harbour Check Functions | Viva Clipper !

  2. Pingback: Harbour All Functions – I | Viva Clipper !

  3. Pingback: Harbour String Functions | Viva Clipper !

  4. Pingback: Harbour RG Summary | Viva Clipper !

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.