0
votes
How do you convert Html to plain text?
You may want to use SgmlReader.
http://code.msdn.microsoft.com/SgmlReader
…
0
votes
How can I remove external links from HTML using Perl?
Yet another solution. I love HTML::TreeBuilder and family.
#!/usr/bin/perl
use strict;
use …
3
votes
Why doesn’t the match operator match anything?
Okay, this is not exactly what you are asking, but I think (based in this and your older question) that you are parsing HTML.
Let me tell you this: regexes aren't the solution. You should u …
