UTF8 Curly Quotes to ASCII
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;
DZone Snippets > beutelevision > regex
12869 users tagging and storing useful source code snippets
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
Thomas Beutel http://www.beutelevision.com
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;