From: ts Date: 2003-10-09T19:17:54+09:00 Subject: Re: case where regex range should raise >>>>> "S" == Simon Strandgaard writes: S> irb(main):001:0> re = /bx{,2}c/ S> => /bx{,2}c/ S> irb(main):002:0> re.match("abxcd") S> => nil svg% ruby -e 'p /bx{,2}x/ =~ "abx{,2}xy"' 1 svg% Guy Decoux