jdmeta (jake meta)
- Login: jdmeta
- Registered on: 01/20/2017
- Last sign in: 01/20/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/20/2017
-
05:08 AM Ruby Bug #13140: unmatched parenthesis error on regexp with "x" option when all parens are matched
- Realized the problem.
The error is caused because the x option also ignores text after # and two # appear in the regex.
If these are escaped then the error goes away. -
04:42 AM Ruby Bug #13140 (Rejected): unmatched parenthesis error on regexp with "x" option when all parens are matched
- See the attached source file.
When the attached file is executed as is, the following error is emitted:
test.rb:39: end pattern with unmatched parenthesis: /^(%([^%]+)%)?+((_?+)([^#]+))(#|$)/x
There are no unmatched parens in t...