... another ... seconds. ... length of the file. Is this ... Hmm. This is *almost* a FAQ, and the problem is: it's not possible. When your page submits a file...
624
Jeff Boes
jboes@...
Aug 1, 2000 2:50 pm
... length of the file. Is this ... Okay, now that I've REALLY READ your message... <blush> While it's true that your uploading script won't receive control...
625
Tom Barron
tbarron@...
Aug 1, 2000 2:52 pm
This works for me: $line = "00/07/31 now is the time"; ($date) = ($line =~ m|(\d{2}/\d{2}/\d{2}).*|); print "date = '$date'\n"; I think the problem with your...
626
Jason Sperry
jsperry1@...
Aug 1, 2000 11:31 pm
Just wanted to thank you for your help Tom. It worked perfectly. Thanks especially for explaining what was wrong and not just throwing me some code with know...
627
Agustinus Setijanto
agust.jkt@...
Aug 2, 2000 3:19 am
... works, shown by http://www.driveway.com since I'd never found any other free web-storage provide this upload progress feature. ... So, I have to find out...
628
Smith, Sheldon
sheldon.smith@...
Aug 4, 2000 3:33 pm
If *all* you want to do is remove lines beginning with 19, other possibilities are perl -ne 'print if !/^19/' infile >outfile or perl -pe 's/^19.*\Z\n//'...
629
Smith, Sheldon
sheldon.smith@...
Aug 4, 2000 3:55 pm
I know a little. The camel book states "... @* should generally appear on a picture line by itself." For the format, experiment with format MULTILINE = ...
630
Smith, Sheldon
sheldon.smith@...
Aug 4, 2000 3:59 pm
Try man perlvar or perldoc perlvar ....
631
Nancy Pettigrew
nancy@...
Aug 4, 2000 4:52 pm
I'm trying to use the Mail::Mailer package, but I'm getting a strange error, even after cutting the code down to just a simple example: Here's the code: ...
632
Taki
cktwai@...
Aug 5, 2000 12:59 am
testing...
633
proshop@...
Aug 6, 2000 4:25 am
I have just decided to learn Perl. Are there any good tutorials on the net. Any suggestions would be appreciated. Thanks for the help in advance! Paul...
634
Rita Sharma
rita@...
Aug 6, 2000 3:20 pm
Hello, I am sending mails using sendmail through a perl script, but in the case of invalid user mail address the mail bounces back to my server administrator...
635
Greg Webster
greg@...
Aug 6, 2000 5:57 pm
Please post the applicable section of your script, and we'll take a look at it...not much we can do without it. Greg List moderator ... -- < >-< >< >-< >< >-<...
636
Gregory D. Fox
greg@...
Aug 6, 2000 6:15 pm
Hi All, I am trying to sort the following @searchresults array by $current_itemname. I have tried different combinations and still get the same results. The...
637
Smith, Sheldon
sheldon.smith@...
Aug 6, 2000 8:02 pm
For starters, go to www.google.com, type in Perl tutorial and press enter. For me, it just came back with Google results 1-10 of about 141,000 for perl...
638
John Davidson
john.davidson@...
Aug 7, 2000 2:54 pm
I hope someone can help I have a list like this: DEL09A2,053.0009.34,TAD2K09, DEL09A2,074.1001.30,LOST001, DEL09A2,845.9112.22,RUG112CD, ...
Hi! try this : while (<>) { ($field1, $field2) = split(/,/, $_); print "$field2, $field1\n"; } David "Sniper" Rigaudiere ... From: "John Davidson"...
641
David Rigaudiere
drigaudiere@...
Aug 7, 2000 3:42 pm
ARF!!! ... i'm so sorry David...
642
Andrew Johnson
andrew-johnson@...
Aug 7, 2000 3:46 pm
Whenever you find yourself thinking about keeping track of unique items, you should think of using a hash. If you are familiar with using references, here is...
643
John Davidson
john.davidson@...
Aug 7, 2000 3:59 pm
Fantastic!! Thanks to all! For those who are interested, I played around with a un*x script to do the same: for i in `cat loc.txt | cut -d',' -f2 | sort -u` ...
644
Mike
mike@...
Aug 7, 2000 4:59 pm
Aloha, This is the first time for me to post on this mailing list. I hope my question is appropriate. I installed Windows NT server 4.0 Service pack 4 and...
645
root
tpbiazus@...
Aug 7, 2000 5:16 pm
www.neworder.box.sk is a wonderful link with a huge amount of material about perl. biazus...
646
Smith, Sheldon
sheldon.smith@...
Aug 7, 2000 9:32 pm
Did you omit something? I see a nice, big split to filter the desired elements out of the inventory list. Once you add the entire inventory record to the...
647
Gregory D. Fox
greg@...
Aug 7, 2000 9:37 pm
I got this code from another list and it worked nicely. ... @searchresults = sort by5thfield @searchresults; sub by5thfield{ (@crap[1..4], $a5thfield) = split...
648
Smith, Sheldon
sheldon.smith@...
Aug 7, 2000 9:57 pm
I believe you can also use "undef" as a list target, that is, (undef,undef,undef,undef,$a5thfield) = split... and so on. Since Perl doesn't have to make a junk...
649
caim@...
Aug 7, 2000 11:17 pm
650
joach@...
Aug 8, 2000 3:51 am
I was reading along with this sorting thread and wished to try to resort a data file..... I used one of the examples posted..... but this does not work...... ...
651
Andrew Johnson
andrew-johnson@...
Aug 8, 2000 4:49 am
! I was reading along with this sorting thread and wished to try to ! resort a data file..... I used one of the examples posted..... but your question is not a...
652
Olivier-Bernard RICHARD
Olivier-Bernard.Richa...
Aug 8, 2000 4:04 pm
... You could do something like this : DEL09A2,053.0009.34,TAD2K09 -> 053.0009.34,DEL09A2,TAD2K09, -> 053.0009.34,DEL09A2 -> split on comma -> $thing{$field1}...