sentences
函式
適用於: Databricks SQL Databricks Runtime
將 str
分割成單字陣列。
語法
sentences(str [, lang, country] )
引數
str
STRING
:要剖析的表達式。lang
:具有語言代碼的ISO 639 Alpha-2
選擇性STRING
表達式(例如 'DE'),Alpha-3
或最多 8 個字元的語言子標記。country
:具有國家/地區代碼或數值 3 區域代碼之國家/地區代碼ISO 3166 alpha-2
的UN M.49
選擇性STRING
運算式。
傳回
ARRAY
的 ARRAY
STRING
。
lang 的預設值為 en
和 國家/地區 US
。
範例
> SELECT sentences('Hi there! Good morning.');
[[Hi, there],[Good, morning]]
> SELECT sentences('Hi there! Good morning.', 'en', 'US');
[[Hi, there],[Good, morning]]