

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# toLower
<a name="toLower-function"></a>

`toLower` は文字列をすべて小文字に書式設定します。`toLower` は Null 値を含む行はスキップします。

## 構文
<a name="toLower-function-syntax"></a>

```
toLower(expression)
```

## 引数
<a name="toLower-function-arguments"></a>

 *expression*   
expression は文字列である必要があります。文字列データ型を使用しているフィールドの名前、**'12 Main Street'** のようなリテラル値、または文字列を出力する別の関数の呼び出しを使用できます。

## 戻り型
<a name="toLower-function-return-type"></a>

String

## 例
<a name="toLower-function-example"></a>

次の例では、文字列値を小文字に変換しています。

```
toLower('Seattle Store #14')
```

次の値が返されます。

```
seattle store #14
```