Project

General

Profile

Actions

Bug #21040

closed

String#next! method does not mutate $& variable

Added by radarek (Radosław Bułat) 1 day ago. Updated about 22 hours ago.

Status:
Rejected
Assignee:
-
Target version:
-
ruby -v:
ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [arm64-darwin24]
[ruby-core:120696]

Description

String#next! method should mutate string and return mutated version. For some reason, using it on $& does not mutate it but still returns new version.

Steps to reproduce (2 different ways):

"123".gsub(/./){$&.next!}    # returns "234" as expected
"123".gsub(/./){$&.next!;$&} # returns "123" but should be "234"
"123".gsub(/./){_1.next!;_1} # returns "234" as expected



"123"[/./]
puts $&.      # prints 1
puts $&.next! # prints 2
puts $&       # prints 1 but should be 2
Actions

Also available in: Atom PDF

Like0
Like0Like0