Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change 
notification.

The "Hive/LanguageManual/UDF" page has been changed by MayankLahiri.
The comment on this change is: added entry for sentences() UDF.
http://wiki.apache.org/hadoop/Hive/LanguageManual/UDF?action=diff&rev1=46&rev2=47

--------------------------------------------------

  ||string ||rpad(string str, int len, string pad) ||Returns str, right-padded 
with pad to a length of len ||
  ||list ||split(string str, string pat) ||Split str around pat (pat is a 
regular expression) ||
  ||int ||find_in_set(string str, string strList) ||Returns the first occurance 
of str in strList where strList is a comma-delimited string. Returns null if 
either argument is null. Returns 0 if the first argument contains any commas. 
e.g. find_in_set('ab', 'abc,b,ab,c,def') returns 3 ||
- 
+ ||array<array<string>> || sentences(string str, string lang, string locale) 
|| Tokenizes a string of natural language text into words and sentences, where 
each sentence is broken at the appropriate sentence boundary and returned as an 
array of words. The 'lang' and 'locale' are optional arguments. e.g. 
sentences('Hello there! How are you?') returns ( ("Hello", "there"), ("How", 
"are", "you") ) ||
  
  
  

Reply via email to