use strict; use warnings; my $string = 'title: ABC_II'; foreach my $index (qr/I/, qr/II/, qr/III/) { print "Match\n" if $string =~ m/ABC_$index/; }