0: my $html;
1: { local $/ = undef; $html = <>;}
2:
3: @tokens = tokenize_html($html);
4:
5: foreach (@tokens)
6: { print unless m#</?blink>#; }
7:
8: sub tokenize_html
9: { return split /(<[^>]*>)/, shift; } In reply to Tokenized HTML (kill the blink tag) by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |