Difference between revisions of "UPPERC()"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Function to convert utf-8 character expression to upper case ==Syntax== UPPERC(<expC> | <memofield>) ==See Also== DESCEND(), ISLOWER(), ISUPPER(), ...")
 
 
Line 24: Line 24:
 
[[Category:String Data Functions]]
 
[[Category:String Data Functions]]
 
[[Category:Lianja v5.2]]
 
[[Category:Lianja v5.2]]
 +
[[Category:Double Byte Character Functions]]

Latest revision as of 20:26, 15 January 2020

Purpose

Function to convert utf-8 character expression to upper case

Syntax

UPPERC(<expC> | <memofield>)

See Also

DESCEND(), ISLOWER(), ISUPPER(), LCASE(), LOWER(), LOWERC(), MID(), PROPER(), SET EXACT, SET STRCOMPARE, STRTOLOWER(), STRTOUPPER(), SUBSTR(), UCASE(), UPPER()

Description

The UPPERC() function converts a utf-8 character expression <expC> or memo <memofield> to upper case.

Example

cSomeUmlauts = upperc('ä, ö, ü')
? cSomeUmlauts
Ä, Ö, Ü
? lowerc(cSomeUmlauts)
ä, ö, ü