Help for this page
if ( $a eq 'abcdefgh' or $b eq 'abcdefgh' or $c eq 'abcdefgh') { }
if ( $a =~ /abcdefgh/ || $b =~ /abcdefgh/ || ... ....... ) { }
my $USER_NAME = qr{abcdefgh}xms; ... $c =~ $USER_NAME) { }