(String search, int i)
| 1304 | /// |
| 1305 | /// True if string matched |
| 1306 | public boolean match(String search, int i) { |
| 1307 | return match(new StringCharacterIterator(search), i); |
| 1308 | } |
| 1309 | |
| 1310 | /// Matches the current regular expression program against a character array, |
| 1311 | /// starting at a given index. |