Is it possible to have a regex matcher that matches on the following:
I need to know if there is any substring that is both inside AND outside matching parenthesis, exactly formatted as (@ ... )
Examples of match:
abc (@ abc )abc (@ (& abc ) )abc (& def (@ abc ) )(& (& abc def ) (@ abc ) )(& def (& abc ) (@ abc ) )
Examples of no match:
abc(@ abc )abc (@ def )abc (& abc)
Edit: Here's the rspec specification to check the regex. Only 2 tests fail:
"(@ abc ) abc" should match
"(@ abc ) (@ abc )" should not match
describe "regex" do
let(:regex) { /(.+).*\(@.*\1.*\)/ }
matches = ["abc (@ abc )", "(@ abc ) abc", "abc (@ (& abc ) )", "abc (@ (& abc ) )"]
no_matches = ["abc", "(@ abc )", "abc def", "abc abc", "abc (& abc)", "(@ abc ) (@ abc)"]
matches.each do |flow|
it "should match '#{flow}'" do
flow.should match regex
end
end
no_matches.each do |flow|
it "should not match '#{flow}'" do
flow.should_not match regex
end
end
end
(@@ abc) (@ abc),(abc (@ abc)),(@ abc (@ abc)? i suppose you will never have to parse these strings but better be sure – jolivier Sep 4 '12 at 12:27(@ abc (abc)) (@ abc)? – jolivier Sep 4 '12 at 12:34