Search the web
Sign In
New User? Sign Up
perl-beginner · Perl Beginners Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 20960 - 20989 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20960
Can anyone tell me why the "space" and "no space" part of this code doesnt work please? #! /usr/bin/perl use strict; use CGI ':standard'; my $postcode =...
Shuab Muhammad
tech20052003
Offline Send Email
May 1, 2005
5:39 pm
20961
Because the subroutines "ns" and "sp" appear to be undefined. (Also, it's "elsif" not "elseif")....
Mike Southern
mikesouthern
Offline Send Email
May 1, 2005
6:09 pm
20962
Sorry yeh i knew about "elsif" part, I forgot to change that. About the "ns" and "sp" part, how can i define them? do you mean just put ns = no space and sp =...
Shuab Muhammad
tech20052003
Offline Send Email
May 1, 2005
6:19 pm
20963
... You define them to be whatever you want them to be. They are your subroutines. This code says if the value of $format is "ns" then use the subroutine ...
Mike Southern
mikesouthern
Offline Send Email
May 1, 2005
6:41 pm
20964
Using Activestate Perl 5.8.4 Trying to get millisecond timestamps throughout a logging sequence. It objected to Time::HiRes asking for version 4.00. A ppm...
Ken Shail
kenshail2003
Offline Send Email
May 1, 2005
8:25 pm
20965
Please ignore my request - I found the reason: Missing semicolon after use Time::HiRes Duhhhhh BTW This was the error message. Time::HiRes version 4.00...
Ken at Home
kenshail2003
Offline Send Email
May 1, 2005
8:40 pm
20966
Hello All, I need to do command line testing using Perl. So how should I proceed with it and what approach should I follow. Which modules I should go through? ...
vishal_kharge
Offline Send Email
May 2, 2005
9:02 am
20967
??????? Choose the application and modules that are appropriate for your design, then proceed in the right direction until you have obtained the results you ...
Mike Southern
mikesouthern
Offline Send Email
May 2, 2005
10:34 am
20968
Thanks for such a good response. ... design, ... results you ... same as you ... correctly, the...
vishal_kharge
Offline Send Email
May 2, 2005
11:02 am
20969
Well, thanks for an outstanding question....
Mike Southern
mikesouthern
Offline Send Email
May 2, 2005
11:06 am
20970
You have to be root to run those daemons. As stated earlier, this program leaves you open to attacks. Ezra...
Ezra Taylor
ezra.taylor@...
Send Email
May 2, 2005
11:53 am
20971
hi all I am very new to perl and i am learning thru manual only so kindly help me to solve the following problem and my job is related to document and text...
baski_28091979
Offline Send Email
May 2, 2005
1:43 pm
20972
How can I search the contents of all the files in a directory for a specific phrase and write all of the filenames to an array which have that phrase? I'm...
b2174ml
Offline Send Email
May 3, 2005
2:18 am
20973
Hi, I am trying to use Perl for Windows (ActiveState Perl) to draw simple polygons in a blank, fullsized window. I have read about the GD module, and this...
Patrick
patrickb_99
Offline Send Email
May 3, 2005
2:23 am
20974
perldoc -f grep you might still have to read every file, but its much more easy. also checkout File::Grep from CPAN...
Suraj Jacob
iamxsj
Offline Send Email
May 3, 2005
3:59 am
20975
checkout perlQt. http://search.cpan.org/~ggarand/PerlQt-3.008/...
Suraj Jacob
iamxsj
Offline Send Email
May 3, 2005
4:02 am
20976
Well the question was not oustanding, the answer was. ... follow. ... same....
vishal_kharge
Offline Send Email
May 3, 2005
4:09 am
20977
Narod, a zdes mozhno pisat po russki?...
Шиндяпин А.В
shindyapin_av@...
Send Email
May 3, 2005
6:09 am
20978
Hi, I guess that you can write in russian, but I don't know if you can get answers... Funny, you wrote in latin alfabet, but in russian language. Regards, CO ...
Cristi Ocolisan
cristi_ocolisan
Offline Send Email
May 3, 2005
9:59 am
20979
help me please! i need the scpipts for web2mail service....
Шиндяпин А.В
shindyapin_av@...
Send Email
May 3, 2005
10:12 am
20980
... I'm not bothered. It is still unclear what it is you are trying to achieve, so unless you ask your question with more clarity you are unlikely to get an ...
Mike Southern
mikesouthern
Offline Send Email
May 3, 2005
10:27 am
20981
Подскажет кто нибудь, где можно раздобыть скрипты для организации web2mail сервиса на...
Шиндяпин А.В
shindyapin_av@...
Send Email
May 3, 2005
11:03 am
20982
From: "Шиндяпин А.В" <shindyapin_av@...> ... I think you are looking for this: http://nms-cgi.sourceforge.net/ Use Google before...
Jenda Krynicky
jendaperl
Online Now Send Email
May 3, 2005
12:06 pm
20983
Hi, I'm trying to write code with these modules (HTML::TreeBuilder, HTML::TokeParser, HTML::Elements). I'm having some difficulty understanding how to dissect...
Malcolm Mill
icthyst
Offline Send Email
May 3, 2005
12:56 pm
20984
If you are using active states distribution of perl, it comes with a binary for a SEARCH program which is good.. so you can call it in your program and parse...
Donato Azevedo
donatoufmg
Offline Send Email
May 3, 2005
1:35 pm
20985
... I am using GD::Graph for some applications and It doesn't seem to bother me at all.... ... -- ******************************************* Donato Azevedo ...
Donato Azevedo
donatoufmg
Offline Send Email
May 3, 2005
1:37 pm
20986
Hi, I have a script that is divided into 2 files for manageability. Each is about 700 lines in length and the second file is called from the first using the...
johnbr123zzz
Offline Send Email
May 3, 2005
9:23 pm
20987
You can pass variables (or references to variables) as parameters to subs in the other file and get return values back. ... From: johnbr123zzz To:...
Ken Shail
kenshail2003
Offline Send Email
May 3, 2005
11:29 pm
20988
You *could* use perls grep command ... ... You have to open each file; you'd always have to do that - but there's no need to read each line if all you want is...
Mike Southern
mikesouthern
Offline Send Email
May 4, 2005
12:44 am
20989
General answer to match a general question: You can pass data from one file to another by writing subroutines that process the passed data and return a result....
Mike Southern
mikesouthern
Offline Send Email
May 4, 2005
1:00 am
Messages 20960 - 20989 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright ╘ 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help