Difference between revisions of "PROPER()"

From Lianjapedia
Jump to: navigation, search
 
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to convert words to lower case with the first character in upper case
 
Function to convert words to lower case with the first character in upper case
 
  
 
==Syntax==
 
==Syntax==
 
PROPER(<expC>)
 
PROPER(<expC>)
 
  
 
==See Also==
 
==See Also==
 
[[ISUPPER()]], [[ISLOWER()]], [[LEN()]], [[LOWER()]], [[STREXTRACT()]], [[STRTOLOWER()]], [[STRTOUPPER()]], [[SUBSTR()]], [[TRIM()]], [[UCFIRST()]], [[UPPER()]]  
 
[[ISUPPER()]], [[ISLOWER()]], [[LEN()]], [[LOWER()]], [[STREXTRACT()]], [[STRTOLOWER()]], [[STRTOUPPER()]], [[SUBSTR()]], [[TRIM()]], [[UCFIRST()]], [[UPPER()]]  
 
  
 
==Description==
 
==Description==
 
The PROPER() function converts the first character of the specified <expC> to upper case and the remaining characters of the word to lower case.
 
The PROPER() function converts the first character of the specified <expC> to upper case and the remaining characters of the word to lower case.
 
  
 
==Example==
 
==Example==
Line 21: Line 17:
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:String Data]]
 
 
[[Category:String Data Functions]]
 
[[Category:String Data Functions]]

Latest revision as of 06:42, 4 February 2013

Purpose

Function to convert words to lower case with the first character in upper case

Syntax

PROPER(<expC>)

See Also

ISUPPER(), ISLOWER(), LEN(), LOWER(), STREXTRACT(), STRTOLOWER(), STRTOUPPER(), SUBSTR(), TRIM(), UCFIRST(), UPPER()

Description

The PROPER() function converts the first character of the specified <expC> to upper case and the remaining characters of the word to lower case.

Example

? proper("ACCOUNTS")
Accounts