Faster implementation of string splitting on a single character delimiter. @param src the string to split @param delim the delimiter character @return a String[] value
(String src, char delim)
| 111 | * @return a <code>String[]</code> value |
| 112 | */ |
| 113 | public static String[] split(String src, char delim) { |
| 114 | return split(src, delim, 0); |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * Faster implementation of string splitting on a single character delimiter. |