Help for this page

Select Code to Download


  1. or download this
    $_       = 'foo bah bar';
    $find    = 'bah';
    ...
    
    $\ = "\n";
    print;      # "foo [\1] bar" and not "foo [bah] bar"
    
  2. or download this
    $_       = 'foo bah bar';
    $find    = 'bah';
    ...
    
    $\ = "\n";
    print;
    
  3. or download this
    $_       = 'foo bah bah bar';
    $find    = 'bah';
    ...
    
    $\ = "\n";
    print;