Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^3: strip html tags and special characters in perl while inserting the text in to database.

by graff (Chancellor)
on Jun 13, 2007 at 04:08 UTC ( [id://620873]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $resume = "\x{201D}";
    print "$resume\n";
    
    $resume =~ s/\x{201d}/"/g;
    print "$resume\n";
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    
    my $resume = "\x{201d}";
    print unidecode( $resume ), "\n";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://620873]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (2)
As of 2024-04-19 21:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found