Help for this page

Select Code to Download


  1. or download this
    my $test = qq|Some test. This is a test-with a dash. We want to match 
    +test here|;
    
    $test =~ s{\b(test)\b}{change_for_url($1)}eg;
    ...
    
        print "GOT: '$_[0]'\n";
    }
    
  2. or download this
    GOT: 'test'
    GOT: 'test'
    GOT: 'test'