Splits input around instances of the regular expression. It returns an array giving the strings that occur before, between, and after instances of the regular expression. Empty strings that would occur at the end of the array are omitted. @param input the input string to be split @return the split
(String input)
| 202 | * @return the split strings |
| 203 | */ |
| 204 | public String[] split(String input) { |
| 205 | return split(input, 0); |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Splits input around instances of the regular expression. It returns an array giving the strings |