RE: finding text

2002-03-27 Thread Michael Gargiullo
Thank you, This gave me a great headstart Mike -Original Message- From: bob ackerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 12:58 AM To: [EMAIL PROTECTED] Subject: Re: finding text here is my code to parse a line: $_ = "abcdef"; # sample of

RE: finding text

2002-03-27 Thread Michael Gargiullo
stown NJ 08520 Mercer This is always before the I want: MailingNameStateCodeZIPCodeCo untyNameFIPSCode -Original Message- From: bob ackerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 12:48 AM To: [EMAIL PROTECTED] Subject: Re: finding text how do you me

Re: finding text

2002-03-27 Thread bob ackerman
here is my code to parse a line: $_ = "abcdef"; # sample of a row @arr = /(.*?)<\/td>/g; # get chars between'td' tag and endtag into an array print $_,"\n" for @arr; # just checking result On Wednesday, March 27, 2002, at 09:48 PM, bob ackerman wrote: >

Re: finding text

2002-03-27 Thread bob ackerman
how do you mean to identify the row you want to capture? or are you saying you have the row and just want to know how to parse the line to get text between and ? On Wednesday, March 27, 2002, at 09:41 PM, Michael Gargiullo wrote: > I use LWP::Simple to get an HTML page. I only want to keep o

Re: finding text in a gif image

2001-10-20 Thread Mel Matsuoka
At 10:45 PM 10/20/01 -0400, David Kirol wrote: >Hi All, >I need a way to extract the text portion from a .gif image of the >type attached. Any ideas? Ooo, you're gonna have a ton of fun trying to pull that off :) You're probably going to have to write your own OCR routines and tie them