Find both pattern and position of multiple regex matches in Ruby

后端 未结 2 1147
半阙折子戏
半阙折子戏 2021-01-13 08:35

This should be an easy question but I can\'t find anything about it.

Given a regular expression in Ruby, for every match I need to retrieve the matched patterns

2条回答
  •  庸人自扰
    2021-01-13 09:21

    MatchData

    string.scan(regex) do
      $1           # Pattern at first position
      $2           # Pattern at second position
      $~.offset(1) # Starting and ending position of $1
      $~.offset(2) # Starting and ending position of $2
    end
    

提交回复
热议问题