http://qs321.pair.com?node_id=890560


in reply to Why does this simple grouping regex not match?

(?=a|b|c)
I'm not sure how it iterprets exactly, but I think you need actually
perl -e '$_ = "(b)."; /\([abc]\)/ && do { print "match!\n"; };'
or
perl -e '$_ = "(b)."; /\((a|b|c)\)/ && do { print "match!\n"; };'