Can anyone help me build a regular expression that will find a string of any length containing any characters but must contain 21 commas
Thanks
|
Can anyone help me build a regular expression that will find a string of any length containing any characters but must contain 21 commas Thanks |
|||||
|
That is:
|
|||||||||||
|
|
Might be faster and more understandable to iterate through the string, count the number of commas found and then compare it to 21. |
|||
|
|
|
Exactly 21 commas:
At least 21 commas:
|
|||||||||||
|
|
If you're using a regex variety that supports the Possessive quantifier (e.g. Java), you can do:
The Possessive quantifier can be better performance than a Greedy quantifier.
|
||||
|
|
|
|||||||
|
|
if exactly 21:
if at least 21:
However, I would suggest don't use regex for such simple task. Because it's slow. |
|||
|
|
|
What language? There's probably a simpler method. For example... In CFML, you can just see if In Java, you can compare etc... |
||||
|
|
or...
Will perform better than...
|
||||
|
|
|
|||||||||
|