calfeld (Christopher Alfeld)
- Login: calfeld
- Email: calfeld@calfeld.net
- Registered on: 02/06/2013
- Last sign in: 02/06/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/06/2013
-
04:29 AM Ruby Bug #7787 (Rejected): ruby 1.9 regexp quantifiers behave unpredictably when stacked
- Ruby (1.8 and 1.9) allows for stacked quantifiers such as /x{2}{5}/ and appears to treat them more or less as expected, i.e., modulo capturing, /x{2}{5}/ is equivalent to /(x{2}){5}/ is equivalent to /x{10}/.
However, in Ruby 1.9, suc...