Actions
Bug #11992
closedRegexp match data
Description
m=" M.S. Math \n M.S. Computer Eng. \n".match /M\.S\./
m.offset 0
[1,5]
m.offset 1
[1,5] # should be [13,17]
Actions
Like0
Like0Like0Like0
Added by rinkevichjm (James Rinkevich) over 9 years ago. Updated almost 6 years ago.
Description
m=" M.S. Math \n M.S. Computer Eng. \n".match /M\.S\./
m.offset 0
[1,5]
m.offset 1
[1,5] # should be [13,17]
Found in jruby too
I can't reproduce it, with any of 1.8..2.3, nor jruby-9.0.1.0.
$ ruby -e 'm=" M.S. Math \n M.S. Computer Eng. \n".match /M\.S\./; p m.offset(0), m.offset(1)'
-e:1:in `offset': index 1 out of matches (IndexError)
from -e:1:in `<main>'
What version do you use?