Re: [OT] Is this feasible in Perl??

2001-06-17 Thread will trillich
On Wed, Jun 13, 2001 at 06:57:45AM +0800, Gunther Birznieks wrote: My experience is that architecturally Perl cannot handle this. You should switch to Java and use an Enterprise Java Bean to do all this for you. you must have an interesting sense of humor. -- I figure: if a man's gonna

Re: Is this feasible in Perl??

2001-06-13 Thread Franck PORCHER
Perl developpers are helpful. Eventhough this list is not dedicated to stricto sensu Perl programming, I will answer your question, but just this time. Please refer to the right list (I thing there is a Perl beginners list), and above all, get the Camel book (Programming Perl 3rd Edition,

Is this feasible in Perl??

2001-06-12 Thread F.H
++) { print For $ssns[$i]\n; for ($i = 0; $i = $#Hobbies ; $i++){ if ($Hobbies[$i] =~ $ssns[$i]) { print Hobbies are: $Hobbies[$i]\n;} } I wanted to print out for each SSN corresponding SSN numbers but it's just not working!!! If this is feasible

Re: [OT] Is this feasible in Perl??

2001-06-12 Thread Gunther Birznieks
]) { print Hobbies are: $Hobbies[$i]\n;} } I wanted to print out for each SSN corresponding SSN numbers but it's just not working!!! If this is feasible in Perl I'd appreciate if someone could help. Thanks I.S __ Get

Re: Is this feasible in Perl??

2001-06-12 Thread alastair
On Tue, Jun 12, 2001 at 05:19:41PM -0400, F.H wrote: Hi All, I have a text file like this: As has been stated, this question is off-topic for a modperl mailing list. To answer your question - yes, perl was designed to handle this type of problem. However, you'll need to spend some time and

Re: Is this feasible in Perl??

2001-06-12 Thread Cees Hek
; for ($i = 0; $i = $#Hobbies ; $i++){ if ($Hobbies[$i] =~ $ssns[$i]) { print Hobbies are: $Hobbies[$i]\n;} } I wanted to print out for each SSN corresponding SSN numbers but it's just not working!!! If this is feasible in Perl I'd