Why is non-greedy match not working for me? Take following example:
public String nonGreedy(){
String str2 = "abc|s:0:\"gef\";s:2:\"ced\"";
return str2.split(":.*?ced")[0];
}
In my eyes the result should be: abc|s:0:\"gef\";s:2
but it is: abc|s
The
.*?
in your regex matches any character except\n
(0 or more times, matching the least amount possible).You can try the regular expression:
On another note, you should use a constant Pattern to avoid recompiling the expression every time, something like: