Help for this page

Select Code to Download


  1. or download this
    $_ = 'This is "the search" string "that was" supplied';
    my @quotes = (m/"(.*?)"/g); s/".*?"//g;
    my @keys = split();
    
  2. or download this
    use strict;
    use warnings;
    ...
        my @keys = split();
    } 
    print time() - $time;