Splits a string into substrings using the default delimiter set, which is " \t\n\r" (space, tab, newline and carriage-return).
(String str)
| 255 | /** Splits a string into substrings using the default delimiter set, |
| 256 | which is " \t\n\r" (space, tab, newline and carriage-return). */ |
| 257 | public static String[] split(String str) { |
| 258 | return split(str, " \t\n\r"); |
| 259 | } |
| 260 | |
| 261 | /** Splits a string into substring using the characters |
| 262 | contained in the second argument as the delimiter set. */ |