红宝石正则表达式:匹配并获取位置

前端之家收集整理的这篇文章主要介绍了红宝石正则表达式:匹配并获取位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想匹配正则表达式,并获得匹配字符串中的位置

例如,

"AustinTexasDallasTexas".match_with_posn /(Texas)/

我想要match_with_posn返回如下:[6,17],其中6和17是德克萨斯州两个实例的起始位置。

有什么吗?

使用Ruby 1.8.6,您可以这样做:
require 'enumerator' #Only for 1.8.6,newer versions should not need this.

s = "AustinTexasDallasTexas"
positions = s.enum_for(:scan,/Texas/).map { Regexp.last_match.begin(0) }

这将创建一个数组:

=> [6,17]
原文链接:https://www.f2er.com/regex/357549.html

猜你在找的正则表达式相关文章