Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Optimization for readability and speed (code)

by deprecated (Priest)
on Apr 30, 2001 at 22:15 UTC ( [id://76689]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://76689]
Approved by root
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-20 03:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found