Difference between revisions of "ISLOWER()"

From Lianjapedia
Jump to: navigation, search
 
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to test for lower case character
 
Function to test for lower case character
 
  
 
==Syntax==
 
==Syntax==
 
ISLOWER(<expC>)
 
ISLOWER(<expC>)
 
  
 
==See Also==
 
==See Also==
 
[[ISALPHA()]], [[ISUPPER()]], [[LOWER()]], [[UPPER()]]
 
[[ISALPHA()]], [[ISUPPER()]], [[LOWER()]], [[UPPER()]]
 
  
 
==Description==
 
==Description==
 
The ISLOWER() function returns .T. if the first character of the character expression <expC> is lower case and .F. otherwise.
 
The ISLOWER() function returns .T. if the first character of the character expression <expC> is lower case and .F. otherwise.
 
  
 
==Example==
 
==Example==
Line 23: Line 19:
  
  
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:String Data]]
 
 
[[Category:String Data Functions]]
 
[[Category:String Data Functions]]
 +
[[Category:Lianja VFP Extensions]]
 +
[[Category:VFP Function Extensions]]

Latest revision as of 06:38, 4 February 2013

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)