Help for this page

Select Code to Download


  1. or download this
    my $string = "Hello sailor";
    
    ...
    $string =~ s/$regex/Goodbye \1/;
    
    print "string is now $string \n";