Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perl-beginner · Perl Beginners Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 3765
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 8441 - 8470 of 27459   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
8470 Charles K. Clarkson
charlesclarkson Send Email
Feb 1, 2002
3:10 am
"blu_monk"; <b@...> ... I looked in a few places and it seems the best method is to store a unique id in the cookie and use storable.pm to...
8469 cadayton Send Email Feb 1, 2002
2:26 am
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...
8468 blu_monk Send Email Jan 31, 2002
11:58 pm
... 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@... Send Email
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...
8466 Charles K. Clarkson
charlesclarkson Send Email
Jan 31, 2002
10:22 pm
"blu_monk"; <b@...> ... Bill, I don't have access to a server for a test, but as for as I can see the cookie should be set with: $cookie2 = new...
8465 b_harnish Send Email Jan 31, 2002
4:17 pm
... while(<>){ chomp; # Split it up, (white)space seperated my @x = split /\s/; # Loop through last 2 fields for(@x[-2,-1]) { # 19 = Divide by 100, 20 = Divide...
8464 blu_monk Send Email Jan 31, 2002
3:53 pm
... 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 = { ...
8463 slavik944 Send Email Jan 31, 2002
3:35 pm
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...
8462 cadayton Send Email Jan 31, 2002
2:33 pm
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@... Send Email
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@... Send Email
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...
8459 Charles K. Clarkson
charlesclarkson Send Email
Jan 30, 2002
10:31 pm
"bpaea" <dav@...> ... This looks at the contents of $line: /^ beginning of the line \s* 0 or more whitespace characters (...
8458 Charles K. Clarkson
charlesclarkson Send Email
Jan 30, 2002
10:12 pm
"blu_monk"; <b@...> ... I'm surprise one of these didn't work. Try dumping the structure with use Data::Dumper; %cookies = fetch CGI::Cookie; ...
8457 Charles K. Clarkson
charlesclarkson Send Email
Jan 30, 2002
10:12 pm
"lavanya ravi" <ushalavan@...> ... tried that) ... Er, chomp( my @file3 = <FILE3> );...
8456 bpaea Send Email Jan 30, 2002
10:09 pm
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...
8455 bhahn1800 Send Email Jan 30, 2002
9:37 pm
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...
8454 b_harnish Send Email Jan 30, 2002
8:33 pm
What doesn't work? Does it not read the data in correctly? If not, try sending us some of the output file. - Brian...
8453 Jonathan E. Paton
jonathanpaton@... Send Email
Jan 30, 2002
8:14 pm
... ^ escaped bracket, remove \ or slightly shorter still: my $total = 0; $total += $1 while ($line =~ /(\d+(?:\.\d\d)?)<BR>/g)); Jonathan Paton ...
8452 Dan Boger
mortal3k Send Email
Jan 30, 2002
5:33 pm
... ( : start storing into $1 \d+ : any number of digits (?: : start grouping, but don't remember into $2 \. : literal '.' \d\d : match...
8451 Franki
frankieh@... Send Email
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:...
8450 Dan Boger
mortal3k Send Email
Jan 30, 2002
5:07 pm
... ok, so how about this: my $total = 0; while ($line =~ /(\d+(?:\.\d\d)?\)<BR>/g) { $total += $1; } -- Dan Boger dan@......
8449 Franki
frankieh@... Send Email
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...
8448 Dan Boger
mortal3k Send Email
Jan 30, 2002
4:19 pm
... you can do something like this: (untested) (assuming you have your line in a variable called "$line"): my $total = 0; while ($line =~ /(\d+\.\d&#92;d)/g) { ...
8447 Franki
frankieh@... Send Email
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...
8446 lavanya ravi
ushalavan Send Email
Jan 30, 2002
4:00 pm
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....
8445 lavanya ravi
ushalavan Send Email
Jan 30, 2002
4:00 pm
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....
8444 Dave Benware
mrbompa Send Email
Jan 30, 2002
2:05 pm
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 ...
8443 Charles K. Clarkson
charlesclarkson Send Email
Jan 30, 2002
7:16 am
Anyone know how long Perl Monks is going to be down? I think they were trying to move to pair networks. Charles....
8442 Charles K. Clarkson
charlesclarkson Send Email
Jan 30, 2002
5:46 am
"Tony Austin" <tony@...> ... This is a beginners group. We expect simple questions. Apologize for database design and multiple iheritance questions....
8441 b_harnish Send Email Jan 30, 2002
3:28 am
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...
Messages 8441 - 8470 of 27459   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help