Help for this page

Select Code to Download


  1. or download this
    my @clean = map clean_html($_), @dirty;
    
  2. or download this
    sub clean_html {
        my ($html) = @_;
    ...
        $clean =~ s/^\s+|\s+$//g;
        return $clean;
    }