3
votes
How can I strip invalid XML characters from strings in Perl?
Okay, this seems to be already answered, but what the hey. If you want to author XML documents, you must use an XML library.
#!/usr/bin/perl
use strict;
use XML::Li …
