Splits a token around matches of the given separator. @param token token to be split @param separator separator character @return array
(final byte[] token, final int separator)
| 1035 | * @return array |
| 1036 | */ |
| 1037 | public static byte[][] split(final byte[] token, final int separator) { |
| 1038 | return split(token, separator, false); |
| 1039 | } |
| 1040 | |
| 1041 | /** |
| 1042 | * Splits a token around matches of the given separator. |