- or download this
my $count = $string =~ tr/@//;
- or download this
$CHARS = '(<|>|\[|\])';
- or download this
$CHARS = qr/([][<>])/;
- or download this
$id = $1 if (/msgid=([^:]+):/);
$id =~ s/(^<|>$)//g;
- or download this
($id) = /msgid=<([^>]+)/;
- or download this
if (!$id || $id =~ /^(\s+|)$/) {
$no_id++;
next;
}
- or download this
(@data) = grep(!/received from internet:/, @in);
(@data) = grep(!/Error-Handler/, @data)
if ( grep(/Error-Handler/, @data) && $data[1] );
- or download this
if ($data[1]) { # Do you really mean that, by the way?
my (@t1,@t2);
...
} @data;
@data = @t2 if @t1;
}
- or download this
if ($line[0] =~ /( |-)([a-zA-Z]+)$/) {
- or download this
if ($line[0] =~ /[ -](a-zA-Z]+)$/) {