next if $foo =~ /^#/; if ( $foo =~ /^(?:this|that|or|something|else)$/ { ... } #### if ( $foo =~ /^$bar$/i ) { ... } #### if ( lc($foo) eq lc($bar) ) { ... }