Home : General : Perl Programming :

General: Perl Programming: Re: [utinni] Re : Using HTML-TokeParser: Edit Log

Here is the list of edits for this post
Re: [utinni] Re : Using HTML-TokeParser
Just a FYI:

open my $in, ...

...is not backward compatible. It's a perl 5.6+ feature. Also you don't need to explicitly close the file handle using this method as it is done automatically.

Also as you don't need Begin/End you can change:

(Begin|End)

to:

(?:Begin|End)

Last edited by:

Paul: Feb 12, 2003, 5:17 PM

Edit Log: