Skip to search.
perl-beginner · Perl Beginners Mailing List

Group Information

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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 5875 - 5904 of 27344   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5875 Little Dragon
littledragon-list@... Send Email
Oct 1, 2001
10:23 am
# Greetings. I'm _very_ new to Perl. Appreciate the good advice and # generous willingness to help found here. # # I would like to parse a local file and...
5876 Greg
webmaster@... Send Email
Oct 1, 2001
11:27 am
... My sincerest apologies. I read the messages on this group via the web, so do not see what others get by e-mail. I also own/moderate another Yahoo group,...
5877 Jenda Krynicky
Jenda@... Send Email
Oct 1, 2001
12:26 pm
... There are basicaly two ways: 1) BEGIN { if (some test to know where we are running) { # if we are on the test site eval "sub Flock {1}"; # fake flock }...
5878 rebelx@... Send Email Oct 1, 2001
12:51 pm
Hello, I have a script that work fine. What I want to do is to send the variables in hyperlink (lets say the script name is action.cgi and the variables are ...
5879 toni_t_banire@... Send Email Oct 1, 2001
1:48 pm
Does anyone have a snippet of code that will enable me to count the no. of weekdays (not weekends) in any given month. I would have posted an example of how I...
5880 Merlijn uyttersprot
merlijn_u2@... Send Email
Oct 1, 2001
1:49 pm
Hello All, Raining greetings from Belgium; I'll scetch my situation: MAIN PRORGAM: #!/opt/local/perl/bin/perl use strict; use DBI; use CGI; use pln_show_data; ...
5881 Sean
perlmongrel@... Send Email
Oct 1, 2001
2:18 pm
First off, I'm assuming you've created a database handle with a statement sort of like this: $dbh = DBI->connect($data_source, $username, $auth, \%attr); Next,...
5882 Sean
perlmongrel@... Send Email
Oct 1, 2001
2:18 pm
First off, I'm assuming you've created a database handle with a statement sort of like this: $dbh = DBI->connect($data_source, $username, $auth, \%attr); Next,...
5883 Sean
perlmongrel@... Send Email
Oct 1, 2001
2:19 pm
Is it for any given year too?...
5884 toni_t_banire@... Send Email Oct 1, 2001
2:22 pm
yes, but the year will start from 2001 till forever Toni...
5885 hesham
sendmail4me2002@... Send Email
Oct 1, 2001
2:26 pm
Hi, How can i start writing makefiles using linux. regards, hesham....,...
5886 Merlijn uyttersprot
merlijn_u2@... Send Email
Oct 1, 2001
2:40 pm
All set, been doing the copy of the other prepare query sub.;. pointed my error to some friends... been drinking lots of coffee.. Still no solution.. I thought...
5887 toni_t_banire@... Send Email Oct 1, 2001
2:52 pm
yes, all years are taken into consideratrion. What I am trying to do is supply 2 dates to perl and find how many days are between them excluding weekends. Toni...
5888 ggarri2910@... Send Email Oct 1, 2001
3:46 pm
Hey Charles- I'm running 5.003 on my AIX server....
5889 Greg
webmaster@... Send Email
Oct 1, 2001
3:48 pm
... ======================================== I suspect you are using the POST method in your form, and only checking for variables passed by the POST method...
5890 Greg Webster
greg@... Send Email
Oct 1, 2001
4:29 pm
On Mon, 01 Oct 2001 11:27:46 -0000 ... Unfortunately, there is very little I can do. Yahoo has somehow disconnected the group from my email address, and at...
5891 Charles K. Clarkson
cclarkson@... Send Email
Oct 1, 2001
4:42 pm
... From: <ggarri2910@...> To: <perl-beginner@yahoogroups.com> Sent: Monday, October 01, 2001 10:46 AM Subject: [PBML] Re: Checking for lines in a file ...
5892 rebelx@... Send Email Oct 1, 2001
5:11 pm
Thanks it worked fine .... Thank you very much Greg ... THIS IS A GREAT LIST......
5893 Paul Batchie
paulaol@... Send Email
Oct 1, 2001
5:33 pm
... Something worth remembering. I tried Radu's script on a 111k file, and it took perhaps 1.5 secs, which is great, but as I add more functions that would...
5894 pathillcorp@... Send Email Oct 1, 2001
5:40 pm
I am trying to install a form and am running into the following problems which might be related. Program consists of an HTML Form and a cgi program. I am...
5895 msutfin@... Send Email Oct 1, 2001
6:53 pm
Sysadmin has asked for a report based on our FTP logs. I've parsed the lines in the FTP log based on the action the user took (STOR, DELE, RETR, CWD..) For...
5896 Bompa
bompa@... Send Email
Oct 1, 2001
7:46 pm
Seems to me that you want to know how many times "UID1 /usr/bin" occurs in the array. Like a list of unique values. Seems you eluded to this idea...
5897 portia317@... Send Email Oct 1, 2001
11:05 pm
Hi! I have a file that changes name to the date and is stored in a variable : $report= $date.pl. I have file1.pl which opens another file2.pl using...
5898 Naveen Bodla
nbodla@... Send Email
Oct 2, 2001
2:48 am
Hi all, Is there a way I could share data between two perl programs. I parse the html forms in my first perl script and I would like to use the same data in...
5899 Gordon Stewart
Gordon.Stewart@... Send Email
Oct 2, 2001
4:15 am
Hi there mateys... question re Regex search, - I'm just using a simple @araa = grep(/$search/i, <INF>); Line in my script - Thats the only kind of...
5900 Gordon Stewart
Gordon.Stewart@... Send Email
Oct 2, 2001
4:22 am
If i put s*ta in the search field, i want to find an 's' any number of characters and then a 'ta'. But it only brinf=gs up all those wityh 'ta'. If i put...
5901 Charles K. Clarkson
cclarkson@... Send Email
Oct 2, 2001
5:54 am
... How's about: Change all occurrences of * in $search to .*? s/\*/.*?/g; Change all occurrences of ? to . tr/?/./g; This will allow some wildcard matching. ?...
5902 Charles K. Clarkson
cclarkson@... Send Email
Oct 2, 2001
6:16 am
... From: <msutfin@...> To: <perl-beginner@yahoogroups.com> Sent: Monday, October 01, 2001 1:53 PM Subject: [PBML] Which Data Structure to Use? ...
5903 eventualdeath
eventualdeath@... Send Email
Oct 2, 2001
6:19 am
Hi, On Matt's guestbook, I want to modify the output in such a way that it has the ability to sent to either www.myurl.com/primary.shtml/ or...
5904 Marcus Gus Nessel
frosty@... Send Email
Oct 2, 2001
8:40 am
UNSUBSCRIBE...
Messages 5875 - 5904 of 27344   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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