What do we get?

Report a typo
After executing the code below, the invocation of matcher.start() ...

String years = "1887 1898 1977 1981 1982 1985 1987 2001 2003 2004";

Pattern pattern = Pattern.compile("1\\d\\d7");

Matcher matcher = pattern.matcher(years);

matcher.find();
matcher.find();
Select one option from the list
___

Create a free account to access the full topic