Delen via


try_url_decode-functie

Van toepassing op:selectievakje gemarkeerd als ja Databricks Runtime 16.0 en hoger

Hiermee wordt een tekenreeks terug vertaald uit de indeling application/x-www-form-urlencoded of NULL als de indeling onjuist is.

Syntaxis

try_url_decode(str)

Argumenten

  • str: Een STRING expressie die moet worden gedecodeerd.

Retouren

A STRING.

Als de tekenreeks niet voldoet aan de indeling application/x-www-form-urlencoded , retourneert NULLde functie . Als u in plaats daarvan CANNOT_DECODE_URL wilt verhogen, gebruikt u de functie url_decode().

Voorbeelden

> SELECT url_encode('http://spark.apache.org/path?query=1');
 http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1

> SELECT try_url_decode('http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1');
 http://spark.apache.org/path?query=1

> SELECT try_url_decode('http%3A%2F%2spark.apache.org');
 NULL

> SELECT url_decode('http%3A%2F%2spark.apache.org');
 Error: CANNOT_DECODE_URL

> SELECT parse_url('http://spark.apache.org/path?query=1', 'QUERY', 'query');
 1

> SELECT parse_url('http%3A%2F%2Fspark.apache.org%2Fpath%3Fquery%3D1', 'QUERY', 'query');
 1