RE: Help with file parsing

2002-07-10 Thread Matt Hart
Hi, try something like this. nb, the square brackets are escaped, else they denote a character class. Regards Matt open (FILE, $file) or die Cannot open $file: $!\n; my $section; while (my $line = FILE) { if ($line =~ /^\[(.*?)\]/) { $section = $1; } elsif($section eq 'record_1')

RE: Mail::Sender - bug?

2002-05-21 Thread Matt Hart
Lee, I think you need to escape the @ in your email address as the double quotes invokes varible interpretation on the string. Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Lee Goddard Sent: 21 May 2002 09:22 To: [EMAIL PROTECTED] Cc: [EMAIL

RE: About GoogleSearch

2002-04-30 Thread Matt Hart
Google has set the upper limit to 10 results per search request so you won't be able to get more than that. There is some information here: http://www.google.com/apis/api_faq.html#tech8 - Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of sunil matte