Help for this page

Select Code to Download


  1. or download this
    my $foo = "Camel meme power supreme!";
    my $bar = "me";
    
    $foo =~ s/$bar+/$bar/g;
    
  2. or download this
    $foo =~ s/($bar)+/$bar/g;
  3. or download this
    $line =~ s!($/)+!$/!g;