There was a question about regex and trying to answer I found another strange things.
String x = "X";
System.out.println(x.replaceAll("X*", "Y"));
This prints YY. why??
String x = "X";
System.out.println(x.replaceAll("X*?", "Y"));
And this prints YXY
Why reluctant regex doesn’t match ‘X’ character? There is "noting"X"nothing" but why first doesn’t match three symbols and matches two and then one instead of three? and second regex matches only "nothing"s and not X?
Let’s consider them in turn:
There are two matches:
Xis matched, and is replaced withY.Ygets added to the output.End result:
YY.There are also two matches:
Ygets added to the output. The character at this position,X, was not consumed by the match, and is therefore copied into the output verbatim.Ygets added to the output.End result:
YXY.