Help for this page

Select Code to Download


  1. or download this
    use vars qw|$myvar|;
    $myvar = "...";
    
  2. or download this
    our $myvar = "...";
    
  3. or download this
    timethese(100000, { 
       Greedy  => sub { $myvar =~ /"(.*)"/ }, 
       Lazy    => sub { $myvar =~ /"(.*?)"/ }, 
       Negated => sub { $myvar =~ /"[^"]*"/ } 
    });