Help for this page

Select Code to Download


  1. or download this
    use strict;
    my $str  = 'abcadefaghi';
    my $pat  = qr/(a.)/;
    my $repl = 'system dir ';
    $str =~ s/$pat/$repl/eeg;