Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

LCase

すべての文字を小文字に変換した文字列を返します。

Synopsis

LCase(string)

引数

引数 string は、任意の有効な文字列式です。

概要

小文字に変換されるのは大文字のみです。小文字と文字ではない符号や記号は変換されません。

以下の例は、LCase 関数を使用して大文字を小文字に変換します。

Dim MyString
MyString = "Caché from InterSystems"
Println LCase(MyString) ' Returns "caché from intersystems"

以下の例では、最初の 4 つのギリシャ文字を大文字から小文字に変換します。

Dim MyString
MyString = Chr(913)&Chr(914)&Chr(915)&Chr(916)
Println MyString
Println LCase(MyString)

(上の例は、Caché の Unicode インストールが必要です。)

関連項目

FeedbackOpens in a new tab