After reading the CPAN.pm documentation (imagine that), there is a config.pm file that contains references to executables. This file was manually edit to...
... I can ... Thanks for the help, Charles, but these don't work either. I think the problem lies in how the cookie gets stored. It gets compressed and stored...
8467
Nguyen, David M
david.m.nguyen@...
Jan 31, 2002 10:32 pm
I have coporated CGI::Request module inside my perl script. When I compiled script, I got following errors. Can someone tell me what wrong with it and how do...
... structure with ... Aha. The reason my tries didn't work above are because of the way it stores the data. Here's what Data::Dumper gave me: $VAR1 = { ...
Hi, I've got an embarrasingly simple question but I dont know how to go about finding a way to figure it out. I have for example a file that contains the...
Has anyone ever experienced this install problem of referencing the Winzip program? I guessing the install process picking up the full path name and is having...
8461
Jonathan E. Paton
jonathanpaton@...
Jan 31, 2002 9:43 am
... I'll try. :) ... The current line is processed as: Start at beginning of line... Zero or more spaces... Nonspaces - place in $1... One or more spaces......
8460
Jorge Goncalvez
goncal11@...
Jan 31, 2002 8:04 am
Hi, I have a perl tk (in Windows9X) application which contains 2 windows. What I would like to do is when i click the cross(to destroy the window) of the first...
I am trouble shooting a script that does a ps -eo command and kills a process if it meets certain criteria and came upon these lines. Can anyone explain what...
Hi guys, I'm new to Perl and wanted to figure out why I get the following error when I run the Makefile.pl file from the command prompt: Can't open perl script...
... ( : start storing into $1 \d+ : any number of digits (?: : start grouping, but don't remember into $2 \. : literal '.' \d\d : match...
8451
Franki
frankieh@...
Jan 30, 2002 5:23 pm
ummm, regex is not my forte, what exactly does that one do? rgds Frank ... From: Dan Boger [mailto:dan@...] Sent: Thursday, 31 January 2002 1:08 AM To:...
... ok, so how about this: my $total = 0; while ($line =~ /(\d+(?:\.\d\d)?\)<BR>/g) { $total += $1; } -- Dan Boger dan@......
8449
Franki
frankieh@...
Jan 30, 2002 5:03 pm
yeah, they are prices, but I have no guarantee that people won't represent 5.00 dollars as just 5 so using the . with digits isn't really a good test.. this is...
... you can do something like this: (untested) (assuming you have your line in a variable called "$line"): my $total = 0; while ($line =~ /(\d+\.\d92;d)/g) { ...
8447
Franki
frankieh@...
Jan 30, 2002 4:06 pm
Hi all I am working on this script again, and I have gotten everything going bar one thing... In this script, one element of an array is this: Gift Card...
hi, I tried it out it doesnt seem to work. do u want me to open the file in another txt and do the thing ( well i even tried that) the output remains the same....
hi, I tried it out it doesnt seem to work. do u want me to open the file in another txt and do the thing ( well i even tried that) the output remains the same....
I had a problem with my email server and may have missed some editor reviews. If your name is *not* on this list, please resend your review. Jenda Steven ...
"Tony Austin" <tony@...> ... This is a beginners group. We expect simple questions. Apologize for database design and multiple iheritance questions....
next will move to the next element in the array, and move execution back to the top of the loop. My suggestion is to have an index into the array, increasing...