ilya.andreyuk (Ilya Andreyuk)
- Login: ilya.andreyuk
- Registered on: 06/20/2023
- Last sign in: 06/20/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
06/20/2023
-
02:07 PM Ruby Bug #19739 (Closed): String coderange not cleared by String#slice!
- Hello,
Key cannot be found in a Hash when slice! method is applied to the key. I cannot reproduce this behaviour with sub! or gsub! methods:
``` ruby
hash = {}
key = "ABC OÜ"
key.slice!(/ oü$/i)
# key.sub!(/ oü$/i, '')
# key.gs...