in reply to Re: HTML::Entities question
in thread HTML::Entities question

i pretty much want to parse out characters that have html entities except my little list of ',",<,> and &

and HTML::Entities allows you to parse out characters that have entities, and also allow you to state exactly which ones you want parsed. I want to state which ones i don't want parsed. Seeing there isn't any way to do this, I want a workaround (dang nabiit!)

I'll try what you gots,

 

-justin simoni
!skazat!

Replies are listed 'Best First'.
Re: Re: Re: HTML::Entities question
by skazat (Chaplain) on Oct 28, 2001 at 01:12 UTC

    ok, duh the example in the docs:

    encode_entities($a, "\200-\377");
    seems to do what i want nicely

     

    -justin simoni
    !skazat!