Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Thomas Beutel http://www.beutelevision.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

UTF8 Curly Quotes to ASCII

Here's a cheap hack to convert UTF8 curly quotes to ASCII (but try to use CPAN module instead of this if you can).

   1  
   2   $xml =~ s/\xe2\x80\x99/\'/gs;
   3   $xml =~ s/\xe2\x80\x98/\'/gs;
   4   $xml =~ s/\xe2\x80\x9c/\"/gs;
   5   $xml =~ s/\xe2\x80\x9d/\"/gs;
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS