Help for this page

Select Code to Download


  1. or download this
        $churchill = qq{"If I were your husband," he said, "I should drink
    + it."};
    
        while ($churchill =~ /"(.*?)"/g) {
          print $1, "\n";
        }
    
  2. or download this
        while ($churchill =~ /"([^"]*)"/g) {
          print $1, "\n";
        }