gube has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use warnings; use Time::Piece; use HTML::TagFilter; my $tf = HTML::TagFilter->new(); my $dirty_html = "test252bb<a>gube<"; my $clean_html = $tf->filter($dirty_html); print $clean_html; Current output : test252bb<a>gube< I need : test252bb gube<
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML::TagFilter not filtering opening quote ?
by Your Mother (Archbishop) on Aug 18, 2010 at 18:10 UTC | |
|
Re: HTML::TagFilter not filtering opening quote ?
by MidLifeXis (Monsignor) on Aug 18, 2010 at 17:52 UTC |