Help for this page

Select Code to Download


  1. or download this
    my $str = q{this is "a test} 
        . qq{\n} 
    ...
    print qq{=====}; 
    $str =~ s/"[^"]+"//gs; 
    print $str;
    
  2. or download this
    this is "a test
    this is "only a "poor "test
    =====
    this is only a test