in reply to Re^2: a regex which can detect if a string have all of some charactersin thread a regex which can detect if a string have all of some characters
my $re = join '', map { "(?=.*?$_)" } map { quotemeta } @a; [download]