Help for this page

Select Code to Download


  1. or download this
       my $data = qq(SELECT word FROM swears);
       my $sth = $dbh->prepare($data);
    ...
       {
           push @swearwords, $ref->[0];
       }
    
  2. or download this
       while ($sth->fetch)
       {
          $text =~ s/$_/****/ foreach @swearwords;