RE: reading portions of a line from a file

2001-04-03 Thread william . meitzen
Title: RE: reading portions of a line from a file ; open your file ; loop through each line $s=your huge string read from your open file; $a_begin=5; $a_end=10; $b_begin=50; $b_end=100; $c_begin=280; $c_end=300; $a=substr($s,$a_begin,$a_end-$a_begin+1);

RE: Windows Perl Editors?

2001-02-15 Thread william . meitzen
I've used HomeSite for the past 3 years. I love it. -Original Message-From: Ewan Grantham [mailto:[EMAIL PROTECTED]]Sent: Thursday, February 15, 2001 7:42 AMTo: [EMAIL PROTECTED]Subject: Windows Perl Editors? OK, while Visual Perl looks like it will be nice, someday, I

RE: Thread support in stable perl 5.6.0

2001-02-08 Thread william . meitzen
If you're running Peer Web Services (the NT Workstation equivalent to IIS), you can have up to 10 simultaneous connections. Period. -Original Message-From: Guharaman J [mailto:[EMAIL PROTECTED]]Sent: Thursday, February 08, 2001 2:49 AMTo: '[EMAIL PROTECTED]'Subject: Thread

RE: Retrieve Exchange addresses

2001-01-24 Thread william . meitzen
Title: RE: Retrieve Exchange addresses I'm not exactly sure what you're asking, so I'll explain further. I'm working on a generic form emailer, and I'm making a lot of excellent progress. I have many HTML forms on our intranet. Each form will have a text field named email_to_address

RE: get rid of Null result

2001-01-15 Thread william . meitzen
Title: RE: get rid of Null result How about this: push (@state, $states) if ($states !~ /\s*/); And, as a suggestion: $error=$db - Sql($stmt); if ($error) { $db-Close(); print Error: . Win32::ODBC::Error() . br\n; exit; } -Original Message- From:

RE: Microsoft access ODBC and CGI

2000-12-21 Thread william . meitzen
Title: RE: Microsoft access ODBC and CGI I have written numerous scripts that issue SQL calls against ODBC databases, including Access databases, using various versions of Perl. I can confidently say that your version of Perl is not the problem, as long as it's 5.005 or later. 1. Send

RE: Simple regex question

2000-11-14 Thread william . meitzen
Title: RE: Simple regex question $event = "Yet another @ test string \$.?!" ; $event =~ s/[^A-Z!\.,'"?()\s]//ig; Produces: event: Yet another test string .?! -Original Message-From: Ebel, Horst [mailto:[EMAIL PROTECTED]]Sent: Thursday, November 09, 2000 7:44 AMTo: '[EMAIL