Delen via


is_valid_utf8-functie

Van toepassing op: vinkje als ja aan Databricks Runtime 15.4 en hoger

Retourneert true als de invoer een geldige UTF-8-tekenreeks is, anders wordt geretourneerd false.

Syntaxis

is_valid_utf8(strExpr)

Argumenten

  • strExpr: Een STRING expressie.

Retouren

A BOOLEAN, waarmee wordt aangegeven of de invoerTEKENREEKS een geldige UTF-8-tekenreeks vertegenwoordigt.

Voorbeelden

– 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