Difference between revisions of "STRTOUPPER()"

From Lianjapedia
Jump to: navigation, search
m (Text replace - "Recital" to "Lianja")
Line 13: Line 13:
 
==Example==
 
==Example==
 
<code lang="recital">
 
<code lang="recital">
? strtoupper("Recital")
+
? strtoupper("Lianja")
 
RECITAL
 
RECITAL
 
</code>
 
</code>

Revision as of 01:26, 9 December 2012

Purpose

Function to convert character expression to upper case

Syntax

STRTOUPPER(<expC>)

See Also

DESCEND(), ISLOWER(), ISUPPER(), LOWER(), PROPER(), STRTOLOWER(), UPPER()

Description

The STRTOUPPER() function converts a character expression, <expC>, to upper case. This function is particularly useful with index expressions, as when the FIND key is pressed in forms, a search string typed in upper case will match both upper and lower case characters stored in the table.

Example

? strtoupper("Lianja")
RECITAL