gene91 (Haozhun Jin)
- Login: gene91
- Email: haozhun.jin@gmail.com
- Registered on: 03/20/2015
- Last sign in: 03/24/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/20/2015
-
07:30 PM Ruby Bug #10990: bug in regex char class casefold for certain chars
- The expected result is `0, 0, 0`
-
07:27 PM Ruby Bug #10990 (Closed): bug in regex char class casefold for certain chars
- ~~~
> "\u00c2" =~ /[\u00e0-\u00e5]/i
=> nil
> ...
=> nil
> "\u00c2" =~ /\u00e2/i
=> 0
~~~
The above is the result for 1.9.3p194.
* For 1.9.3p194, it is `nil, nil, 0`
* For 1.8.7p374, it is `0, 0, nil`
* For 2.0.0p481, it...