Return the first index of any of the characters in "any" in "s", or -1 if none are found. This should be a method on String.
(String s, String any)
| 694 | * This should be a method on String. |
| 695 | */ |
| 696 | private static int indexOfAny(String s, String any) { |
| 697 | return indexOfAny(s, any, 0); |
| 698 | } |
| 699 | |
| 700 | private static int indexOfAny(String s, String any, int start) { |
| 701 | try { |