UPPERC()

From Lianjapedia
Revision as of 20:26, 15 January 2020 by Barrymavin (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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)
ä, ö, ü