Partager via


Fonction is_valid_utf8

S’applique à : coche marquée oui Databricks Runtime 15.4 et versions ultérieures

Retourne true si l’entrée est une chaîne UTF-8 valide, sinon false.

Syntaxe

is_valid_utf8(strExpr)

Arguments

  • strExpr : expression STRING.

Retours

Un BOOLEAN, indiquant si la chaîne d’entrée représente une chaîne UTF-8 valide.

Exemples

– 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