Help for this page

Select Code to Download


  1. or download this
    $var1 = ($var =~ s/oo//gir);
    
  2. or download this
    ($var1 = $var) =~ s/oo//gi;
    
  3. or download this
    my @without_oo = map { s/oo//rig } @with_oo;
    
    # traditional version:
    my @without_oo = map { (my $x = $_) =~ s/oo//ig; $x } @with_oo;