Help for this page
Select Code to Download
Select
or
download this
next if $foo =~ /^#/; if ( $foo =~ /^(?:this|that|or|something|else)$/ { ... }
Select
or
download this
if ( $foo =~ /^$bar$/i ) { ... }
Select
or
download this
if ( lc($foo) eq lc($bar) ) { ... }