vlazar (Vlad Zarakovsky)
- Login: vlazar
- Registered on: 01/11/2022
- Last sign in: 11/13/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/11/2022
-
08:14 AM Ruby Bug #18471 (Rejected): Regex#match(re, position) with start of a string anchors ^ and \A
- Found this. Is it a bug in `Regex#match(re, position)`?
From `Regex#match` docs
> If the second parameter is present, it specifies the position in the string to begin the search.
```rb
str = "hello world"
/^world/.match(str, 6...