public class Splitter extends Object
String.split fast (and to help Pattern.split too).| Modifier and Type | Method and Description |
|---|---|
static String[] |
fastSplit(String re,
String input,
int limit)
Returns a result equivalent to
s.split(separator, limit) if it's able
to compute it more cheaply than ICU, or null if the caller should fall back to
using ICU. |
static String[] |
split(Pattern pattern,
String re,
String input,
int limit) |