Re: perl memory issue

2011-07-25 Thread Jim Green
pls ignore this post, it has nothing to do with perl itself. the sender is basically overwhelming the receiver que and receiver couldn't handle fast enough.. Thanks. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.

perldoc perlre

2011-07-25 Thread Rob Dixon
My memory always fails me regarding the result of a Perl pattern match. It depends on - m// or s/// - scalar or list context - /g qualifier ... and I am not certain that that is all! The details are in perldoc perlre but my question is whether the list thinks a more ordered document would be

Re: perldoc perlre

2011-07-25 Thread Shlomi Fish
Hi Rob, On Mon, 25 Jul 2011 14:45:02 +0100 Rob Dixon wrote: > My memory always fails me regarding the result of a Perl pattern match. > It depends on > > - m// or s/// > - scalar or list context > - /g qualifier > > ... and I am not certain that that is all! > Heh, yes, that trips me too. >

Parse HTML

2011-07-25 Thread Jeffrey Joh
Hello, I'm trying to parse HTML files. I want to extract values from tables (1) and from text fields (2). (1) Floor plan: Ranch #1 (2) I would want to retrieve the floor plan (Ranch #1) and the date constructed (04/01/2004) from each HTML file (along with many other text b

Re: Parse HTML

2011-07-25 Thread Shlomi Fish
Hi Jeffrey, On Mon, 25 Jul 2011 13:17:57 -0700 Jeffrey Joh wrote: > > > > > Hello, I'm trying to parse HTML files. I want to extract values from tables > (1) and from text fields (2). (1) width="1" height="1" border="0"> valign="top">Floor plan: >Ranch #1 > (2) > value="04/01/

Re: Parse HTML

2011-07-25 Thread Jim Gibson
On 7/25/11 Mon Jul 25, 2011 1:30 PM, "Shlomi Fish" scribbled: > On Mon, 25 Jul 2011 13:17:57 -0700 > Jeffrey Joh wrote: >> >> Hello, I'm trying to parse HTML files. >> > > You should use an HTML parser for that: > > http://perl-begin.org/uses/text-parsing/ Also look at HTML::TableExtrac

Re: Parse HTML

2011-07-25 Thread Dr.Ruud
On 2011-07-25 22:35, Jim Gibson wrote: Shlomi: Jeffrey: Hello, I'm trying to parse HTML files. You should use an HTML parser for that: http://perl-begin.org/uses/text-parsing/ Also look at HTML::TableExtract (I have not used it).