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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
  Newest  |  < Newer  |  Older >  |  Oldest
Topics Messages Latest Post

Yes you can, and unless you want to replace each occurence of 'string&#39; with '$var' literally, do not escape the '$'. For example : my $str = 'I am a blue...
1 May 27, 2003
6:01 pm

Jean-Sebastien Guay
Jean_Seb
Send Email

I'm not very used to using CGI to do the HTML (I use the Template Toolkit), but what does your next image's link point to? It should point to something like ...
3 May 27, 2003
3:08 pm

Jean-Sebastien Guay
Jean_Seb
Send Email

I am having trouble figuring out how to autoincrement an element in an array. Any help is appreciated 1. mydatafile $ cat mydatafile 1 bill brown spain 84 2...
6 May 27, 2003
10:32 am

jodie wong
whn3375@...
Send Email

Playing w/ CGI a bit today. I've almost finished what I set out to do, but I've hit one block. This is a continuation of a previous question I had about...
2 May 27, 2003
8:37 am

gaijin_punch
Send Email

Is there a way to verify that I am sending only plain text message? I keep getting, We are unable to deliver the message from <electron1@...> to...
3 May 26, 2003
5:32 pm

David Nobles
DNobles@...
Send Email

I'm having trouble opening a file on a remote drive. It fails to open when the drive is mounted by NFS or Samba but opens fine if located on a local drive....
2 May 26, 2003
9:21 am

Damien Carbery
daymobrew
Send Email

Hi I have file which has a number of unwanted lines and i want remove or delete all of them.All the lines which i want to remove start with a particular...
4 May 26, 2003
3:08 am

Charles K. Clarkson
charlesclarkson
Send Email

foreach $q (sort keys %Survey) { foreach $a (sort keys %{$sruvey{$q}}) { print "Question: $q\n"; print "Answer: $a\n"; } } ... I am trying to find a way to...
1 May 25, 2003
10:06 pm

Nick Keeling
nickjk@...
Send Email

I am trying to find a way to print out each key and value in this hash of hashes. Can anybody help? References are soo confusing. :-( #!/usr/bin/perl use...
1 May 25, 2003
9:49 pm

Electron One
thejoeshmoe
Send Email

Hi there i'm using Perl Modules in a script thats only recently been started.. Anyways, I'm familiar with using Perl Modules & 'returning&#39; back to the main cgi...
2 May 25, 2003
7:28 pm

Jenda Krynicky
jendaperl
Send Email

I am creating the directory/folders by date using a perl script. The script will take the input date, and make the directory as per date, and then this folder...
3 May 25, 2003
7:00 pm

Jenda Krynicky
jendaperl
Send Email

Lets say you have two different files. $Test contains a line from a file, and $Gold contains another line from a seperate file. You dont know whats in either...
7 May 25, 2003
3:35 pm

Guillaume A.
webmaster@...
Send Email

I am trying to create a diff script. Reporting to me when a difference between a gold file and a test file is encountered. My code is this, #!/usr/bin/perl use...
2 May 25, 2003
6:03 am

Charles K. Clarkson
charlesclarkson
Send Email

Hello, ... latest ... check www.activestate.com ... right clic -> open with select perl, and check the "open always with" box Sincerely Guillaume Programmation...
1 May 24, 2003
9:08 pm

Guillaume A.
webmaster@...
Send Email

1) I have the ActiveState Perl for Windows v 5.61, i thought it's the latest version, but i am using 5.8 in linux, is there a later version of Perl for...
1 May 24, 2003
8:24 pm

Nadjaf Kouliev
najaf85
Send Email

Hello, ... ppm help help query query * Sincerely, Guillaume Programmation * Web : PERL, CGI, Javascript, HTML * Visual Basic, Pascal, etc...
1 May 24, 2003
6:46 pm

Guillaume A.
webmaster@...
Send Email

How can i list all modules i installed from ActiveState ppm server?is there a command?on Windows as u guessed. thanx...
1 May 24, 2003
5:28 pm

Nadjaf Kouliev
najaf85
Send Email

I have been having problems figuring out the limitations of using DB_File? like how BIG I can get a database to be, how big can the values be?...
1 May 24, 2003
5:24 pm

Hudson T Clark
packetdude2000
Send Email

I am trying to create a diff script. Reporting to me when a difference between a gold file and a test file is encountered. My code is this, #!/usr/bin/perl ...
1 May 24, 2003
1:17 am

Electron One
thejoeshmoe
Send Email

From PPM in the folder: c:\perl&#92;site&#92;lib, this is entered: "Install Win32:ODBC" Get the following message: "returned no results. try a broader search first" ...
1 May 23, 2003
7:11 pm

dawn_dach
Send Email

From what you said, it sounds like it DID expire but not when you expected it ... correct? You didn't tell us what the value of $time was and in this example ...
2 May 23, 2003
6:32 pm

Hudson T Clark
packetdude2000
Send Email

Send me a check and I would be happy to help. At least lie and say its for personal use....
4 May 23, 2003
6:31 pm

Kyle Hamar
kylehamar
Send Email

Howdy: Just looking more for reassurance on this one, and maybe some other peoples' experiences. In my last job (huge Enterprise) there was a proprietary...
2 May 23, 2003
2:04 pm

James 'Chip' ...
jkaufman@...
Send Email

i've downloaded a few modules, now i dont know if i have to extract them to a specific folder or do i have to download .pm files. help me both in windows and...
8 May 23, 2003
8:46 am

Alan C.
acummingsus
Send Email

Can someone give me an example of setting the expire time? I'm using something like this: my $fut_time=gmtime(time()+$time) . " GMT"; my $cookie =...
1 May 23, 2003
2:45 am

Hudson T Clark
packetdude2000
Send Email

... I am assuming that the file is broken into sections. Each section is apparently separated by a blank line. I assume further that there are no additional...
1 May 22, 2003
9:09 pm

Charles K. Clarkson
charlesclarkson
Send Email

Hey you have to chomp the whole array in the second list : not - chomp($1001); but - chomp(@1001); ... From: perl-beginner@yahoogroups.com Date: 22 Ìàé 2003...
1 May 22, 2003
8:11 pm

Nadjaf Kouliev
najaf85
Send Email

The first listing works fine. The second just hangs at the end with no error messages. I noticed that I would be missing the array quotes in the second, so I...
2 May 22, 2003
7:50 pm

cairpre409
Send Email

Never mind... I'm having a dumb moment... figured it out. -s ... From: Farrell, Stephanie Sent: Thursday, May 22, 2003 2:26 PM To:...
1 May 22, 2003
6:50 pm

Farrell, Stephanie
stephasaurus...
Send Email

I can't get rmtree to work (2K system). Tried searching the archives and found someone with a similar problem, but no solution... <snippet> use File::Path; ...
1 May 22, 2003
6:26 pm

Farrell, Stephanie
stephasaurus...
Send Email
  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