Difference between revisions of "ISUPPER()"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to test for upper case character
 
Function to test for upper case character
 
  
 
==Syntax==
 
==Syntax==
 
ISUPPER(<expC>)
 
ISUPPER(<expC>)
 
  
 
==See Also==
 
==See Also==
 
[[ISALPHA()]], [[ISLOWER()]], [[LOWER()]], [[UPPER()]]
 
[[ISALPHA()]], [[ISLOWER()]], [[LOWER()]], [[UPPER()]]
 
  
 
==Description==
 
==Description==
 
The ISUPPER() function returns .T. if the first character of the character expression <expC> is upper case and .F. otherwise.
 
The ISUPPER() function returns .T. if the first character of the character expression <expC> is upper 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]]
 
[[Category:String Data Functions]]
 
[[Category:String Data Functions]]

Revision as of 12:11, 7 December 2012

Purpose

Function to test for upper case character

Syntax

ISUPPER(<expC>)

See Also

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

Description

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

Example

use prospect
replace all company with proper(company);
for not isupper(company)