(CharSequence input, char delimiter)
| 81 | } |
| 82 | |
| 83 | public static String[] split(CharSequence input, char delimiter) { |
| 84 | return splitWithParenthesis(input, delimiter, Integer.MAX_VALUE, '\0', '\0', true); |
| 85 | } |
| 86 | |
| 87 | public static String[] split(CharSequence input, char delimiter, int limit) { |
| 88 | return splitWithParenthesis(input, delimiter, limit, '\0', '\0', true); |