(String[] args)
| 7 | |
| 8 | public class SplitDemo { |
| 9 | public static void main(String[] args) { |
| 10 | String input = |
| 11 | "This!!unusual use!!of exclamation!!points"; |
| 12 | System.out.println(Arrays.toString( |
| 13 | Pattern.compile("!!").split(input))); |
| 14 | // Only do the first three: |
| 15 | System.out.println(Arrays.toString( |
| 16 | Pattern.compile("!!").split(input, 3))); |
| 17 | } |
| 18 | } |
| 19 | /* Output: |
| 20 | [This, unusual use, of exclamation, points] |