Newbie Perl question...
If you wanted to match for 2-5 x's, followed by a z, this pattern match should work...
/x{3,5}z/
If I enter less than 3 x's, it returns false as it should, but if I enter more than 5 x's, it returns true, which is wrong.
I'm using a script that tests different...