Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    my @swearwords = qw/bad worse ugly/;
    ...
    $text=~s/$_/****/ foreach @swearwords;
    
    print $text;
    
  2. or download this
    use strict;
    
    my $swearwords= join '|', qw/bad worse ugly/;
    ...
    $text=~s/$swearwords/****/g ;
    
    print $text;