Help for this page

Select Code to Download


  1. or download this
    ($text = $html) =~ s/<(\/|!)?[-.a-zA-Z0-9]*.*?>//g;
    
  2. or download this
    $text =~ s/<[^>]*>//gs; # only for most simple html!
    $text =~ s/<([^>]|\n)*>//g; # multi-line comments?