- or download this
$x . "\n"
- or download this
"$x\n"
- or download this
>perl -we"my $x; /$x/"
Use of uninitialized value in regexp compilation at -e line 1.
Use of uninitialized value in pattern match (m//) at -e line 1.
- or download this
if (($Delay_id =~ /\(\d\d/) || ($Delay_id =~ /\(\d\d\d/)){
- or download this
if ($Delay_id =~ /\(\d\d/){
- or download this
if ($Delay_id =~ /\((\d\d\d?)/){