Splits a string around matches of the given separator. @param string string to be split @param separator separation character @return resulting strings
(final String string, final char separator)
| 132 | * @return resulting strings |
| 133 | */ |
| 134 | public static String[] split(final String string, final char separator) { |
| 135 | return split(string, separator, -1); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Splits a string around matches of the given separator. |