http://qs321.pair.com?node_id=746718


in reply to Re: Redundant regex ([0-9]{2} | [0-9] {2, 4})?
in thread Redundant regex ([0-9]{2} | [0-9] {2, 4})?

Holy crap, I need glasses! I completely missed the space in there and didn't realize it until I increased the font size.

That makes perfect sense now. Duh.


To disagree, one doesn't have to be disagreeable - Barry Goldwater

  • Comment on Re^2: Redundant regex ([0-9]{2} | [0-9] {2, 4})?

Replies are listed 'Best First'.
Re^3: Redundant regex ([0-9]{2} | [0-9] {2, 4})?
by ikegami (Patriarch) on Feb 27, 2009 at 01:35 UTC

    Spaces removed, /[0-9]{2}/ does match a subset of what /[0-9]{2,4}/ matches.

    I'm sure what he wanted was just /[0-9]{2,4}/.