Difference between revisions of "ISLOWER()"

From Lianjapedia
Jump to: navigation, search
Line 23: Line 23:
 
[[Category:String Data]]
 
[[Category:String Data]]
 
[[Category:String Data Functions]]
 
[[Category:String Data Functions]]
 +
[[Category:Lianja VFP Extensions]]
 +
[[Category:VFP Function Extensions]]

Revision as of 07:12, 10 December 2012

Purpose

Function to test for lower case character

Syntax

ISLOWER(<expC>)

See Also

ISALPHA(), ISUPPER(), LOWER(), UPPER()

Description

The ISLOWER() function returns .T. if the first character of the character expression <expC> is lower case and .F. otherwise.

Example

use prospect
replace all company with proper(company);
  for islower(company)