Actions
Feature #8343
closedStringScanner#[] should accept names of named captures
Description
Example:
s = StringScanner.new("Fri Dec 12 1975 14:39")
s.scan(/(?<wday>\w+) (?<month>\w+) (?<day>\d+) /)
# this currently works
s[0] # -> "Fri Dec 12 "
s[1] # -> "Fri"
s[2] # -> "Dec"
s[3] # -> "12"
# this currently does not work
s[:wday] # -> "Fri"
s[:month] # -> "Dec"
s[:day] # -> "12"
I attached a patch including tests for MRI, I don't know if Rubinius has a different implementation, I guess JRuby has.
I can look into this if the feature gets accepted.
Files
Actions
Like0
Like0Like0Like0