Difference between revisions of "LOWERC()"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Function to convert utf-8 character expression to lower case ==Syntax== LOWERC(<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 lower case

Syntax

LOWERC(<expC> | <memofield>)

See Also

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

Description

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

Example

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