Help for this page

Select Code to Download


  1. or download this
    $html =~ s/<($tag[^>]*?)>/{{{$1}}}/sgi;# temp-encode starting tags
    $html =~ s/<\/($tag[^>]*?)>/{{{\/$1}}}/sgi; # temp-encode ending tags
    $html =~ s/<[^>]*?>//sgi;# kill all remaining tags
    $html =~ s/\{{3}/</sgi;# re-encode '<' tags
    $html =~ s/\}{3}/>/sgi;# re-encode '>'tags
    
  2. or download this
    ($_='jjjuuusssttt annootthheer
         pppeeerrrlll haaaccckkeer')=~y/a-z//s;print;