

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

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

`toLower` 會將字串格式設為全部小寫。`toLower` 會略過含 Null 值的列。

## 語法
<a name="toLower-function-syntax"></a>

```
toLower(expression)
```

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

 *表達式*   
表達式必須是字串。它可以是使用字串資料類型的欄位、**'12 Main Street'** 之類的常值，或對輸出字串的另一個函數的呼叫。

## 傳回類型
<a name="toLower-function-return-type"></a>

String

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

下列範例會將字串值轉換為小寫。

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

會傳回下列值。

```
seattle store #14
```