I am wondering if there is a better to represent a fix amount of repeats in a regular expression. For example, if I just want to match exactly 14 letters/digits, I am using ^\w\w\w\w\w\w\w\w\w\w\w\w\w\w$ which will match a word like UNL075BE499135 and not match UNL075BE499135AAA
is there a handy way to do it? In am currently doing it in java but I guess this may apply to other language as well. Thanks in advance.
|
|
||||
|
For Java: http://download.oracle.com/docs/cd/E17409_01/javase/tutorial/essential/regex/quant.html X, exactly n times: X{n} |
|||||||
|
|
If you want to learn more about regular expressions - or just need a handy reference - the Wikipedia Entry on Regular Expressions is actually pretty good. |
||||
|
|
|
In Java create the pattern with |
|||
|
|
|
The finite repetition syntax uses From
All repetition metacharacter have the same precedence, so just like you may need grouping for
Also, just like
Essentially anywhere a ReferencesRelated questions
|
|||
|
|
\wmatches the underscore character as well as letters/digits in Perl. – toolic Jul 16 '10 at 3:04