We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6621fb0 commit 170345eCopy full SHA for 170345e
docs/book/18-Strings.md
@@ -1079,9 +1079,9 @@ public class StartEnd {
1079
while(m.find())
1080
d.display("find() '" + m.group() +
1081
"' start = "+ m.start() + " end = " + m.end());
1082
- if(m.lookingAt()) // No reset() necessary
1083
- d.display("lookingAt() start = "
1084
- + m.start() + " end = " + m.end());
+ if(m.lookingAt()) // No reset() necessary
+ d.display("lookingAt() start = "
+ + m.start() + " end = " + m.end());
1085
if(m.matches()) // No reset() necessary
1086
d.display("matches() start = "
1087
+ m.start() + " end = " + m.end());
0 commit comments