Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: how to get HTML file after parsing with HTML::Normalize

by haoess (Curate)
on Mar 13, 2008 at 10:06 UTC ( [id://673934]=note: print w/replies, xml ) Need Help??


in reply to how to get HTML file after parsing with HTML::Normalize

Ähm, you want the contents of the $cleanHtml variable? Or you want to know how to read the contents of a file?!

Your code revised:

use warnings; use strict; use HTML::Normalize; my $norm = HTML::Normalize->new; open(my $in, '<', 'index.html') or die "Could not read 'index.html': $ +!"; my $dirty = do { local $/; <$in> }; close $in or die "Could not close: $!"; my $cleanHtml = $norm->cleanup(-html => $dirty); open(my $out, '>', 'output.html') or die "Could not open 'output.html' +: $!"; print $out $cleanHtml; close $out or die "Could not close: $!";

-- Frank

Replies are listed 'Best First'.
Re^2: how to get HTML file after parsing with HTML::Normalize
by Anonymous Monk on Mar 14, 2008 at 07:07 UTC
    Thanks Frank

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-04-18 13:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found