Java regex special construct [duplicate]
Possible Duplicate:
What is a regex “independent capturing group”?
Which is the difference between:
(?:X) X, as a non-capturing 开发者_如何学Pythongroup and
(?>X) X, as an independent, non-capturing group
I can't figure out how to use the last.
You might want to look at this question:
What is a regex "independent capturing group"?
精彩评论