andreccosta (André Costa)
- Login: andreccosta
- Registered on: 03/03/2023
- Last sign in: 04/14/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/03/2023
-
10:55 PM Ruby Bug #19476 (Closed): Regexp unexpected partial match
- This regular expression does not have the expected match since Ruby 3.2.
Ruby 3.2.1:
```ruby
> RUBY_VERSION
=> "3.2.1"
> ...
=> #<MatchData "123456" 1:"6">
> "123456789".match(/(\d-?\)?){6,}/)
=> #<MatchData "123456" 1:"6">
...