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 24749 - 24779 of 27465   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
24749 merlyn@...
merlynstoneh... Send Email
Dec 21, 2006
7:29 am
... lord> print "Input "; lord> $input = <STDIN>; lord> chomp($input); lord> print newline; print newline; I don't know what these are supposed to do....
24750 San-Pablo, Arnel
motwister23 Send Email
Dec 21, 2006
2:40 pm
Hi Guys, Would anyone in the group know any PERL command line to trigger the "enter" bar on the keyboard. I have a script which has a line that executes...
24751 Rajesh R
rajesh.recru... Send Email
Dec 21, 2006
8:04 pm
Hi All, We now invite C++,Unix with Scripting around the globe for an excellent job opportunity for our client which is a leading statutory body. Due to the...
24752 sathiya perl
perl_sathiya Send Email
Dec 21, 2006
10:44 pm
while (my ($key,$value) = each(%main::)) { local(*gl) = $value; print "$key - $gl\n"; } What does the above sample code print? Send free SMS to your Friends on...
24753 Mike Southern
mikesouthern Send Email
Dec 21, 2006
10:51 pm
... Nothing ventured, nothing gained ... Why don't you run the script and find out ......
24754 saiju joseph
saijutj Send Email
Dec 22, 2006
2:31 am
The condition for loop termintion $loop != $input will happen only if a positive integer is entered as $input. ... Send free SMS to your Friends on Mobile from...
24755 Samuel N
samuelnmen Send Email
Dec 23, 2006
6:38 am
Hi I have a problem with xpath values I have a XML file. From that i want to generate the Xpath node values For example (following is the XML file): <root> ...
24756 merlyn@...
merlynstoneh... Send Email
Dec 23, 2006
9:10 am
... Samuel> i want all "hdd" values from the root in XPATH syntax Samuel> Like this Samuel> For first system: Samuel> //[1]/[2]/[2] Samuel> For second system: ...
24757 Samuel N
samuelnmen Send Email
Dec 23, 2006
12:36 pm
Hi Thanks for your immediate reply can you please check the following link ...
24758 Raja Jee
pickatutorial Send Email
Dec 23, 2006
2:55 pm
http://www.pickatutorial.com/tutorials/perl_1.htm...
24759 Charles K. Clarkson
charlesclarkson Send Email
Dec 23, 2006
4:16 pm
... Thanks Raja! I will definitely steer clear of these tutorials. Beginners, please do not use these tutorials as examples of good perl programming style....
24760 merlyn@...
merlynstoneh... Send Email
Dec 23, 2006
6:59 pm
... Samuel> Hi Thanks for your immediate reply Samuel> can you please check the following link Samuel>...
24761 merlyn@...
merlynstoneh... Send Email
Dec 23, 2006
8:18 pm
... Charles> Raja Jee <> wrote: Charles> : http://www.pickatutorial.com/tutorials/perl_1.htm Charles> Thanks Raja! I will definitely steer clear of these...
24762 Kelly Jones
kelly.terry.jones@... Send Email
Dec 25, 2006
1:46 am
I want to use system() (or `command`) to run an external command from my Perl script. However, if the external command takes more than 30 seconds (for example)...
24763 merlyn@...
merlynstoneh... Send Email
Dec 25, 2006
3:02 am
... Kelly> I want to use system() (or `command`) to run an external command from Kelly> my Perl script. However, if the external command takes more than 30 ...
24764 Samuel N
samuelnmen Send Email
Dec 26, 2006
6:18 am
Hi thanks How to install LIBXML I am trying to install in different ways, but i am not able to run the you module i am using winXP Professional Can you help me...
24765 tnas
nascimentoth... Send Email
Dec 26, 2006
2:16 pm
Hi folks, I always use the OS Linux and now I'm using Windows. I need install modules from the CPAN shell but, obviously, the simple command: install stuff ...
24766 merlyn@...
merlynstoneh... Send Email
Dec 26, 2006
7:03 pm
... tnas> I always use the OS Linux and now I'm using Windows. I need install modules from the CPAN shell but, obviously, the simple command: tnas> install...
24767 visnu_123b2 Send Email Dec 27, 2006
1:57 am
any chance to get in perl one particular file is open currently or not (file is already in read only mode)...
24768 tnas
nascimentoth... Send Email
Dec 27, 2006
12:16 pm
... stat ($filename); print "File is readable\n" if -r _; print "File is writable\n" if -w _; print "File is executable&#92;n" if -x _; ... HTH. perl -e '$_="tMM...
24769 Ozgur Akan
ozgurakan Send Email
Dec 27, 2006
2:58 pm
Hi, What is the difference of $myNumber and ${myNumber} ? thanks, Ozgur Akan...
24770 John Francini
francini@... Send Email
Dec 27, 2006
4:11 pm
The ${VariableName} syntax is merely a way to guarantee that Perl interprets the variable name cleanly in situations where it might be ambiguous. For example: ...
24771 tnas
nascimentoth... Send Email
Dec 27, 2006
4:21 pm
See "perldoc perldata" in the topic "Scalar values". perl -e '$_="tMM naaCt Feocmama_itpUilucoGa";$_.=$1,print $2 while s/(..)(.)//;print substr$_,1,1;' ...
24772 merlyn@...
merlynstoneh... Send Email
Dec 27, 2006
6:01 pm
... tnas> You can test the properties of a file as explained in "perldoc -f -e": tnas> ------ tnas> stat ($filename); You need to test success here. stat...
24773 tnas
nascimentoth... Send Email
Dec 27, 2006
6:21 pm
... You need to test success here. ... Really, but in the doc reference (perldoc -f -e), this test isn't executed. perl -e '$_="tMM naaCt...
24775 Moron Moroncic
moroncic Send Email
Dec 29, 2006
12:26 pm
Hello Is there a way to use use() with absolute path in conjuction ? For example,have an old DBI modules installed in system directories (like ... from another...
24776 Gordon Stewart
gordonisnz@... Send Email
Dec 29, 2006
1:05 pm
Hi, Mainly Ive been dealing with PHP & MYSQL, for the last few years.. I've recently enquired about an international website, & doing a subdomain /...
24777 tnas
nascimentoth... Send Email
Dec 29, 2006
2:15 pm
... addition to my main question below) I suggest the DBI module, a Database independent interface for Perl. . It defines a set of methods, variables, and...
24778 merlyn@...
merlynstoneh... Send Email
Dec 29, 2006
3:56 pm
... Moron> Is there a way to use use() with absolute path in conjuction ? For Moron> example,have an old DBI modules installed in system directories (like ...
24779 Noah
admin2@... Send Email
Jan 2, 2007
4:47 am
subscribe...
Messages 24749 - 24779 of 27465   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