I have a question regarding the following regex:
match = /^([^[]+?)(\[.*\])?$/.exec(path);
I don't understand the behavior of the "?" in the first expression:
^([^[]+?)
I mean, if this expression was an independent regex, and path was "abc[def]", I would have got: "a" as match[1], right? (due to the lazy match). Now, when I add the second expression, match[1] is: "abc". Could you please explain the difference?
Thanks, Li
