in reply to Re^3: regex testing for multiple values
in thread regex testing for multiple values
Did you try taking it out?
{...} surrounds quantifiers in regexen, like:
=~/[A-Z](1,3}/ # Match any char in the range A-Z no fewer than once, # nor more than 3 times
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: regex testing for multiple values
by Not_a_Number (Prior) on Mar 10, 2008 at 19:19 UTC | |
by ww (Archbishop) on Mar 10, 2008 at 20:32 UTC |