RiTa
index
Name split()
Class RiString
Description Splits the RiString as per String.split(), then checks for any features with the same number of elements as the resulting String[] and adds the appropriate feature to each newly created RiString in the array.
Example:
'only a handful of responses' / {chunk=noun-phrase}, {pos=rb dt nn in nns} ->
  • 'only' / {pos=rb}
  • 'a' / {pos=dt}
  • 'handful' / {pos=nn}
  • 'of' / {pos=in}
  • 'responses' / {pos=nns}
Syntax
split();
split(regex);
Returns rita.RiString[]
Usage Web & Application
Related