共用方式為


is_valid_utf8函式

適用於: 核取記號為「是」 Databricks Runtime 15.4 和更新版本

如果輸入是有效的 UTF-8 字串,則傳 true 回 ,否則傳 false回 。

語法

is_valid_utf8(strExpr)

引數

  • strExprSTRING 運算式。

傳回

BOOLEAN指出輸入 STRING 是否代表有效的 UTF-8 字串串。

範例

– Simple example taking a valid string as input.
> SELECT is_valid_utf8('Spark')
  true

– Simple example taking a valid collated string as input.
> SELECT is_valid_utf8('SQL' COLLATE UTF8_LCASE)
  true

– Simple example taking a valid hexadecimal string as input.
> SELECT is_valid_utf8(x'61')
  true

– Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT is_valid_utf8(x'80')
  false

- Example taking an invalid hexadecimal string as input (illegal UTF-8 byte sequence).
> SELECT is_valid_utf8(x'61C262')
  false