Re: HTML to Text

2006-05-03 Thread JupiterHost.Net
And why not post an example of your catch to illustrate it for the benefit of the list? Because I was busy and I knew you would do it ;-) Hee hee, yeah true enough :) But if you know "this exact block of HTML", how about: my @strings = ( "string 1", "string 2", ... ); Because most likele

Re: HTML to Text

2006-05-03 Thread Paul Johnson
On Wed, May 03, 2006 at 10:04:26AM -0500, JupiterHost.Net wrote: > Paul Johnson wrote: > >On Tue, May 02, 2006 at 04:43:34PM -0500, JupiterHost.Net wrote: > > > >>>Basically, right now I just need the HTML to Text output, like I > >>>explained. > > > >>"I want to grab strings between the p tags i

Re: HTML to Text

2006-05-03 Thread JupiterHost.Net
Paul Johnson wrote: On Tue, May 02, 2006 at 04:43:34PM -0500, JupiterHost.Net wrote: Basically, right now I just need the HTML to Text output, like I explained. "I want to grab strings between the p tags in this exact block of HTML" to which I would reply: my @strings = $html =~ m{(.*)}g

Re: HTML to Text

2006-05-02 Thread Paul Johnson
On Tue, May 02, 2006 at 04:43:34PM -0500, JupiterHost.Net wrote: > >Basically, right now I just need the HTML to Text output, like I explained. > "I want to grab strings between the p tags in this exact block of HTML" > > to which I would reply: > > my @strings = $html =~ m{(.*)}g; Yeah. Depe

Re: HTML to Text

2006-05-02 Thread JupiterHost.Net
Your specification is incomplete. It is simple, not incomplete. Actually it was ambiguous :) Se below to see what I mean (and probably what the post that said it was incomplete meant) What if it says: Data that I need Do you want in your response? Or stripped? Or that part of i

Re: HTML to Text

2006-05-02 Thread Scott Taylor
On Tue, May 2, 2006 12:55, Randal L. Schwartz wrote: >> "Scott" == "Scott Taylor" <[EMAIL PROTECTED]> writes: > > Scott> my simple input file will look like this: > > Scott> > Scott> > Scott> Bin Server > Scott> > Scott> > Scott> Data that I need > Scott> Data that I need > Scott> > Sc

RE: HTML to Text

2006-05-02 Thread Scott Taylor
On Tue, May 2, 2006 13:45, Russ Foster wrote: >> -Original Message- >> >> >> >> Bin Server >> >> >> Data that I need >> Data that I need >> >> >> >> I want the output to just be lines of "Data that I need" stored in a >> string, that I can work on each line one at a time, or in an

RE: HTML to Text

2006-05-02 Thread Russ Foster
> -Original Message- > > > > Bin Server > > > Data that I need > Data that I need > > > > I want the output to just be lines of "Data that I need" stored in a > string, that I can work on each line one at a time, or in an array or > something like that would be great. I would fir

Re: HTML to Text

2006-05-02 Thread Randal L. Schwartz
> "Scott" == "Scott Taylor" <[EMAIL PROTECTED]> writes: Scott> my simple input file will look like this: Scott> Scott> Scott> Bin Server Scott> Scott> Scott> Data that I need Scott> Data that I need Scott> Scott> Scott> I want the output to just be lines of "Data that I need" stored

Re: HTML to text

2001-12-20 Thread Curtis Poe
--- "McCollum, Frank" <[EMAIL PROTECTED]> wrote: > Does anyone know where to find resources on parsing textual content out of > an HTML page? I am trying to grab values out of a table on a website. I > can grab the table, but I am having trouble grabbing the actual values from > it... Frank, Y