- or download this
sub is_ms_num {
...
# looks like its good, return it.
return $string;
}
- or download this
sub atomize {
my $string = shift;
...
}
return undef;
}
- or download this
if ($header =~ /^[Ss]ubject/) {
my ($words, $strings) = atomize( $header );
$key = search_ms_nums(@{$words}) || search_ms_nums(@{$strings}
+);
}
- or download this
sub is_ms_num_re {
my $rval = shift;
...
undef;
}
}