Help for this page

Select Code to Download


  1. or download this
    my $target = 'this is a test of the servise';
    $target =~ s//are/;
    print "$target\n";
    
  2. or download this
    if ($target =~ /test/) {
        $target =~ s//quiz/;
    }
    
  3. or download this
    my $target = 'this is a test of the servise';
    
    if ($target =~ /test/) {
    ...
    } else {
        $target =~ s//foo/;
    }