Actions
Bug #11992
closedRegexp match data
    Bug #11992:
    Regexp 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]
  
        
          
          Updated by rinkevichjm (James Rinkevich) almost 10 years ago
          
          
        
        
      
      Found in jruby too
        
          
          Updated by nobu (Nobuyoshi Nakada) almost 10 years ago
          
          
        
        
      
      - Description updated (diff)
 - Status changed from Open to Feedback
 
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?
        
          
          Updated by jeremyevans0 (Jeremy Evans) over 6 years ago
          
          
        
        
      
      - Status changed from Feedback to Closed
 
Actions