Java: regular expressions
The Java Tutorials: Essential Classes > Regular Expressions > Quantifiers
Greedy Meaning
X? X, once or not at all
X* X, zero or more times
X+ X, one or more times
X{n} X, exactly n times
Need to memorize these.
Geeky reflections
The Java Tutorials: Essential Classes > Regular Expressions > Quantifiers
0 Comments:
Post a Comment
<< Home