

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

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

`toUpper` 會將字串格式設為全部大寫。`toUpper` 會略過含 Null 值的資料列。

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

```
toUpper(expression)
```

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

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

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

String

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

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

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

會傳回下列值。

```
SEATTLE STORE #14
```