IsAlpha()

ISALPHA()

Checks if leftmost character in a string is an alphabetic character

Syntax

      ISALPHA( <cString> ) --> lAlpha

Arguments

<cString> Any character string

Returns

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

Description

This function return a logical true (.T.) if the first character in <cString> is an alphabetic character. If not, the function will return a logical false (.F.).

Examples

      ? 'isalpha( "hello" ) = ', isalpha( "hello" )
      ? 'isalpha( "12345" ) = ', isalpha( "12345" )

Compliance

Clipper

Platforms

All

Files

Library is rtl

Seealso

ISDIGIT(), ISLOWER(), ISUPPER(), LOWER(), UPPER()

4 responses to “IsAlpha()

  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.