sentences
-Funktion
Gilt für: Databricks SQL Databricks Runtime
Teilt str
in ein Array von Arrays von Wörtern.
Syntax
sentences(str [, lang, country] )
Argumente
str
: EinSTRING
-Ausdruck, der geparst werden soll.lang
: Ein optionalerSTRING
-Ausdruck mit einem Sprachcode ausISO 639 Alpha-2
(z. B. „DE“),Alpha-3
, oder ein Sprachuntertag von bis zu 8 Zeichen.country
: Ein optionalerSTRING
-Ausdruck mit einem Ländercode ausISO 3166 alpha-2
-Landeskennzahl oder einerUN M.49
-numerisch-3-Ortsvorwahl.
Gibt zurück
Ein ARRAY
von ARRAY
von STRING
.
Der Standardwert für lang ist en
und country US
.
Beispiele
> SELECT sentences('Hi there! Good morning.');
[[Hi, there],[Good, morning]]
> SELECT sentences('Hi there! Good morning.', 'en', 'US');
[[Hi, there],[Good, morning]]