Re: Easy way of using module Env, platform independent?

2004-11-08 Thread zeray . abraha
Thanks Roger. I will use the hint you gave me and will further explore/modify it to fit my requirement. Regards, Zeray

RE: Perl-Win32-Users Digest, Vol 10, Issue 6

2004-11-08 Thread Dave Budd
$tempstr =~ s/(\r?\n)|(\r[^\n])|(\r$)/br/g; He said spaces, though, so br isn't really what he wants. Is it? And these days, shouldn't it be br / anyway (plus appropriate escape for the /)? ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To

RE: Perl-Win32-Users Digest, Vol 10, Issue 7

2004-11-08 Thread Dave Budd
What is description,bin_data,filename,filesize,filetype?and how to get these imformaton from perl? They are the names of fields within the table being accessed by the MySQL query. A visit to www.mysql.com to have a look at the documentation might be good. If your Perl does a use DBI;you

RE: Regex question: Multiple instances of the same character

2004-11-08 Thread Joseph Discenza
Ted Schuerzinger wrote, on Saturday, November 06, 2004 3:29 PM : I'm an avid, but not very good, Scrabble player. Last night, I was : playing, and suffered a major brain cramp when I got a rack : of four vowels : *and* two blanks: AEIUR**. I couldn't come up with anything : at the

Re: [Swprograms] Auroral reports

2004-11-08 Thread Ted Schuerzinger
Richard Cuff graced hard-core-dx.com with these words of wisdom: I got my kids out of bed -- 7 and 12 - very visible, including shimmering streaking...best here in years... QTH: Allentown, PA USA You're lucky. All I saw was a pinkish glow that looked like it was from one of those old

Re: [Swprograms] Auroral reports

2004-11-08 Thread Ted S.
Ted Schuerzinger graced perl with these words of wisdom: Richard Cuff graced hard-core-dx.com with these words of wisdom: I got my kids out of bed -- 7 and 12 - very visible, including shimmering streaking...best here in years... QTH: Allentown, PA USA You're lucky. All I saw was a

RE: Extracting Images Question

2004-11-08 Thread Thomas, Mark - BLS CTR
I wish it was that easy, I could have a script ftp and grab them. Our company is very funny and does not work well between the different depts, so getting ftp access to a directory on another computer on the other side of the world won't happen. How hard is it to do what I stated in my

RE: Regex question: Multiple instances of the same character

2004-11-08 Thread Ted Schuerzinger
Joseph Discenza graced perl with these words of wisdom: I haven't seen anyone recommend this: /T.*T/i to match two 'T's. I'm not going to compare this to $Bill's word-matching routine :). That's such a simple solution, and it seems to work. In a previous post, I wrote: As an example,