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: 3762
  • 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

"raezorblaedz&quot; <raezorblaedz@...> ... Try rewriting line 23 as: my $Username = $field{'username&#39;}; my $Password = $field{'password&#39;}; my...
7 Jan 4, 2002
4:36 pm

Adrian Stovall
AdrianS@...
Send Email

Hi all, I am using the module Spreadsheet::WriteExcel to create excel reports from my perl script. The report contains file names in a column and certain file...
1 Jan 4, 2002
2:21 pm

Sumit
sumit_827@...
Send Email

does anyone know any website from where i can download hi-resolution images ?? above 300 dpi Images such as people walking on street, citylife, a busy street....
2 Jan 4, 2002
2:15 pm

raezorblaedz
Send Email

1) - I have the following code :- foreach $line (sort keys %url){ $le=0; $le=length($line); if ($le <5) { undef $url{$line}; } } - the %url hash contains a...
1 Jan 4, 2002
1:55 pm

Gordon Stewart
gordonisnz
Send Email

HTML code to call counter.cgi: <img src="http://www.my.com/cgi-bin/counter.cgi";> CGI script states: $countfile = "http://www.my.com/cgicount"; $giffile =...
1 Jan 3, 2002
9:38 pm

raezorblaedz
Send Email

Hello, I would like to generate all *combinations* for an "n choose k" scenario. For example, if I have a set of 4 numbers (1,2,3,4) and I want to chose 3 at a...
2 Jan 3, 2002
5:48 pm

b_harnish
Send Email

When you use the 'my' operator, you define your variable, resetting any data that was in it. try changing your code logic to suit ur need. - Olly ... From:...
6 Jan 3, 2002
3:19 pm

Charles K. Clarkson
charlesclarkson
Send Email

After I develop a script on my PC under NT4.0, I will want to copy it out to a production server and run it there. I don't want to install Perl to the...
5 Jan 3, 2002
7:54 am

coo_t2
Send Email

Hi, How to include a file within script? Say I have a file called "top.txt" in the root dir, and I want the perl script to display the pure texts contents of...
2 Jan 3, 2002
7:52 am

Purr
purrnak
Send Email

... From: "rig01" <rig01@...> To: <perl-beginner@yahoogroups.com> Sent: Thursday, January 03, 2002 2:10 AM Subject: [PBML] How Can I match a blank line ...
1 Jan 3, 2002
6:04 am

Charles K. Clarkson
charlesclarkson
Send Email

Hi Guys : How can i match a blank line (a whole line with spaces), because I want to remove it ???? . Thanks...
1 Jan 3, 2002
2:11 am

rig01
Send Email

"Franki" <frankieh@...> ... Let's correct something here: my $file_name = 'in.txt&#39;; sub hello_world { print $file_name; } will print: in.txt ...
5 Jan 2, 2002
9:56 pm

Charles K. Clarkson
charlesclarkson
Send Email

... my ($Username = $field{'username&#39;}, $Password = $field{'password&#39;}, $PartialPartNumber = $field{'partialnmbrsrch&#39;}, $MyOutFile, $message, $found_err,...
1 Jan 2, 2002
7:37 pm

raezorblaedz
Send Email

The main reasons to use strict are : 1: Make the best use of memory (variables go out of scope when not used) 2: More easily identify things that you've left...
9 Jan 2, 2002
6:38 pm

Greg Webster
kickstart70
Send Email

I need help with sending a form to a thankyou.html page while still submitting the info to an email. Currently I am using form2mail in this way: <form...
2 Jan 2, 2002
7:57 am

coo_t2
Send Email

Hi Members, My question :- Could members please help me to understand why $b is not incremented within the while loop below. Just a comment :- Originally, I...
1 Jan 2, 2002
7:54 am

Leon
eventualdeath
Send Email

Malai <malaikat@...> ... my $file_name = '/top.txt&#39;; open FH, $file_name or die "$file_name: $!"; while ( <FH> ) { print; } close FH; The 'while&#39; block...
1 Jan 1, 2002
10:08 pm

Charles K. Clarkson
charlesclarkson
Send Email

Charles, Once again, I thank you for the lesson. Sometimes I feel like I'm walking through thick mud. I'm addicted to this message board but what I'm learning...
1 Jan 1, 2002
9:42 pm

Don Smith
login2001ca
Send Email

... Be careful what you wish for! ... I edited Don's script for clarity. Mainly, I lined up some of the comments and added some spacing. I did change the order...
1 Jan 1, 2002
4:13 pm

Charles K. Clarkson
charlesclarkson
Send Email

I wish to read cookies from most of my page and I know how to do it my implementing a SSI directive to a script written in perl. To do this I need to name the...
1 Jan 1, 2002
7:45 am

Leon
eventualdeath
Send Email

Greetings Folks! Once again, I come to you for help! I'm writing a rather long program that has a component that opens a file, checks to see if the directory...
5 Jan 1, 2002
4:48 am

Don Smith
login2001ca
Send Email

Hi - ive been up over 26 hours - Off to bed - I'll switch off my server for now - If you see me on yahoo chat, in about 8-10 hours time (12-2 a.m. NZ time) - &...
1 Jan 1, 2002
3:56 am

Gordon Stewart
gordonisnz
Send Email

Hi - i'm online for the next 20-60 minutes... I was just wondering.. if anyone has some spare time (5-10 minutes).. can you email me privately.. - to test a...
1 Jan 1, 2002
3:31 am

Gordon Stewart
gordonisnz
Send Email

its quarter past midnight here, happy new year to you all!! Petra...
1 Dec 31, 2001
11:26 pm

petrawolf
petrawolf2409
Send Email

... From: Gordon Stewart [mailto:gordonisnz@...] ... yes thanx :) ... the u are looking for JavaScript, get ur perlscript to output some javascript...
6 Dec 31, 2001
10:00 pm

Richard Taylor
richttaylor
Send Email

All, I keep hearing use::strict. Why? All of my scripts work perfectly without it. What bene's are there to using this? (h-link to a reference page?) ...and as...
1 Dec 31, 2001
9:33 pm

raezorblaedz
Send Email

... filename, instead of the Username.search.txt.-------- $Username = $field{'username&#39;} ; $Password = $field{'password&#39;} ; $PartialPartNumber =...
11 Dec 31, 2001
7:28 pm

Jeff Eggen
jeggen@...
Send Email

Greets Folks, Does anyone know how to use Perl to close a browser after a form has been filled out and submitted, but still ensure that the form contents reach...
5 Dec 31, 2001
3:27 am

Bompa
mrbompa
Send Email

I have a lot of files and I need to change their file extension. Currenly the extension is *.MP3, but I need it to be *.mp3. I have tried: #perl -e'...
3 Dec 30, 2001
7:46 pm

b_harnish
Send Email

(I'll put " Q ) " to mark specific questions - In between my ramblings ;-) ) Hi.. again - has everyone's Christmas go well ? - Basically, I want to (I can do...
1 Dec 30, 2001
1:54 pm

Gordon Stewart
gordonisnz
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