Help for this page

Select Code to Download


  1. or download this
    sub strip_tags{
        my $string = shift;  # Or my $string = $_[0];
        $string =~ s/<[^>]+>//gs;
        return $string;
    }