def matching_substrings(string, regex)
string.size.times.each_with_object([]) do |start_index, maching_substrings|
start_index.upto(string.size.pred) do |end_index|
substring = string[start_index..end_index]
maching_substrings.push(substring) if substring =~ /^#{regex}$/
end
end
end
matching_substrings('abcadc', /a.*c/) # => ["abc", "abcadc", "adc"]
matching_substrings('foobarfoo', /(\w+).*\1/)
# => ["foobarf",
# "foobarfo",
# "foobarfoo",
# "oo",
# "oobarfo",
# "oobarfoo",
# "obarfo",
# "obarfoo",
# "oo"]
matching_substrings('why is this downvoted?', /why.*/)
# => ["why",
# "why ",
# "why i",
# "why is",
# "why is ",
# "why is t",
# "why is th",
# "why is thi",
# "why is this",
# "why is this ",
# "why is this d",
# "why is this do",
# "why is this dow",
# "why is this down",
# "why is this downv",
# "why is this downvo",
# "why is this downvot",
# "why is this downvote",
# "why is this downvoted",
# "why is this downvoted?"]
出典
2016-01-23 14:19:46
ndn
読者:最初の文それを明確にどのような望まれることは、任意の文字列と正規表現で動作 'all_matches(文字列、正規表現)'呼び出されたメソッドであることになります。 –
一般的に正規表現エンジンでは、 "最も左に最短の"マッチを得る非貪欲の量指定子を指定しない限り、マッチングは "最長の最長"になります。あなたは本当に単一の表現の中で最短と最長の両方を得ることは期待できません。すべてを最短で取得し、連結のすべての順列を見つけることが最良の戦略になります。 –
@ theTinMan、元の質問は、問題は正規表現で与えられた一致についてのものであり、これは単に "言いたいこと"という言葉の例であると述べています。あなたの編集の後、この特定の正規表現のマッチは質問の要点のように見えます。私はあなたの編集に同意しない。 – ndn