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
Messages 27007 - 27036 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
27007 merlyn@...
merlynstoneh... Send Email
Sep 21, 2010
1:28 am
... Roger> Thanks. Problem is I don't have root permission to install the Roger> module in server A. You *never* need root permission to install a Perl module....
27008 off_gl@...
off_gl Send Email
Sep 21, 2010
1:50 am
I dont think you are right Merlyn ... Since I also tried to do the same thing and it didn't work for me too. you need to have root permission to install ...
27009 merlyn@...
merlynstoneh... Send Email
Sep 21, 2010
2:29 am
... off> I dont think you are right Merlyn ... Since I also tried to do the off> same thing and it didn't work for me too. you need to have root off>...
27010 merlyn@...
merlynstoneh... Send Email
Sep 21, 2010
2:30 am
... off> And Merlyn this group name also suggest that it is for beginer off> (perl-beginner@yahoogroups.com) if not then it should be changed .. No offense ...
27011 Roger
rfbits Send Email
Sep 28, 2010
12:57 pm
Hello, I'm using Net::SSH::Perl to connect to the remote server. After executing the below code (to get real-time output), I want the control to be returned to...
27012 gordonisnz Send Email Sep 29, 2010
3:15 am
Hello. This group has been spam-free for a few months now, & I see that the group is only having a handful of messages a week. Before - it used to have...
27013 asp66 Send Email Oct 1, 2010
8:46 pm
Hi all, I have a quick question. I am trying to make sure only 8.3 type string is matched but the below code prints 8.4 . Is there a way I could make sure it...
27014 merlyn@...
merlynstoneh... Send Email
Oct 1, 2010
8:58 pm
... asp66> Hi all, asp66> I have a quick question. I am trying to make sure only 8.3 type string is matched but the below code prints 8.4 . Is there a way I...
27015 Bilashi Sahu
bilashi_sahu Send Email
Oct 2, 2010
5:50 am
Try with this, it works for me my $str1 = "abcdefgh.txtt"; if ($str1 =~ /^\w{8}&#92;.\w{3}$/) { print "$str1&#92;n"; } else { print "not 8.3 string\n"; } From:...
27016 秦斌
justqb@... Send Email
Oct 4, 2010
3:07 pm
try if($string =~ m/^\S{1,8}\.&#92;S{0,3}$/){print $string} ; 2010/10/2 asp66 <asp66@...> ... [Non-text portions of this message have been removed]...
27017 allphotobuzz Send Email Oct 11, 2010
6:10 pm
Hi everyone, I'm trying to get this page's form to give me results and am using the previous results page that worked before I changed the sites template. For...
27018 merlyn@...
merlynstoneh... Send Email
Oct 11, 2010
6:20 pm
... allphotobuzz> I'm trying to get this page's form to give me results and allphotobuzz> am using the previous results page that worked before I allphotobuzz>...
27019 Mike Frank
mikeyf5 Send Email
Oct 13, 2010
2:29 am
I have been teaching myself Perl via the "Perl For Dummies" book, and there is one program that will not run as the book indicates it should. The program uses...
27020 Shlomi Fish
shlomif2 Send Email
Oct 13, 2010
7:29 am
Hi Mike, Forwarding to you until it gets to the list. Regards, Shlomi Fish ... Subject: Re: [PBML] "Perl For Dummies" Help Requested Date: Wednesday 13 October...
27021 Shlomi Fish
shlomif2 Send Email
Oct 13, 2010
10:30 am
... The "For Dummies" books and their ilk have very bad reputations in the technical community. Furthermore, the 1st and 2nd editions of "Perl for Dummies"...
27022 Mike Frank
mikeyf5 Send Email
Oct 13, 2010
12:27 pm
Thank you for your suggestions. I can't understand why this book was marketed by the "For Dummies" publisher if it doesn't do the job of teaching somebody how...
27023 merlyn@...
merlynstoneh... Send Email
Oct 13, 2010
5:55 pm
... Mike> I can't understand why this book was marketed by the "For Dummies" Mike> publisher if it doesn't do the job of teaching somebody how to use Mike>...
27024 wlh1074 Send Email Oct 14, 2010
5:40 pm
Hello- I am new to moose but I am beginner/intermediate Perl programmer. For some reason I am having problems wrapping my head around how to get moose going. ...
27025 merlyn@...
merlynstoneh... Send Email
Oct 14, 2010
5:52 pm
... wlh1074> 1.) If I create a new object with a call to a method that wlh1074> does a say or print statement how do I get this to print to wlh1074>...
27026 Wendell Hatcher
wlh1074 Send Email
Oct 14, 2010
6:00 pm
I actually tried that before with a similar syntax and it didn't print out to the screen. #!/usr/bin/perl use strict; use warnings; BEGIN{ package FooClass; ...
27027 merlyn@...
merlynstoneh... Send Email
Oct 14, 2010
6:04 pm
... Wendell> print $foo->{name}; Please stop that. You want print $foo->name. Use method calls. Don't peer inside the box. -- Randal L. Schwartz - Stonehenge...
27028 Wendell Hatcher
wlh1074 Send Email
Oct 14, 2010
6:13 pm
Here is what I have and it doesn't work Have you tested this with positive results? #!/usr/bin/perl use strict; use warnings; BEGIN{ package FooClass; use...
27029 merlyn@...
merlynstoneh... Send Email
Oct 14, 2010
6:15 pm
... Wendell> Here is what I have and it doesn't work Have you tested this with positive results? Wendell> #!/usr/bin/perl Wendell> use strict; Wendell> use...
27030 Wendell Hatcher
wlh1074 Send Email
Oct 14, 2010
6:24 pm
yes, in-fact I took your code below and just added my name with no success. #!/usr/bin/perl use strict; use warnings; BEGIN { package Foo; use Moose; has name...
27031 merlyn@...
merlynstoneh... Send Email
Oct 14, 2010
6:25 pm
... Wendell> yes, in-fact I took your code below and just added my name with no success. Wendell> #!/usr/bin/perl Wendell> use strict; Wendell> use warnings; ...
27032 Wendell Hatcher
wlh1074 Send Email
Oct 14, 2010
6:36 pm
hmm, not sure why it isnt printing out for me. I am using the code below and calling it from my windows laptop from the command line. #!/usr/bin/perl use...
27033 Bull Durham
doctor_bull Send Email
Oct 26, 2010
12:45 am
I downloaded and studied the O'Reilly Into and Intermediate Perl books, and pressed on with my own project. This project aims to solve those word-substitution...
27034 GoPi
gopichand84 Send Email
Oct 26, 2010
6:30 am
I am dividing my program into three parts.I need your help in each one of them.Pls help Objective my script is to print the lines that match a file name in an...
27035 Shlomi Fish
shlomif2 Send Email
Oct 26, 2010
9:56 am
Hi GoPi, ... Match a filename how? ... 1. This won't compile as you haven't declared %Hash_filenames and you're using "strict" and "warnings";. Did you actually...
27036 doctor_bull Send Email Oct 26, 2010
3:25 pm
A little poking around reveals it is not perl, but bash that is waiting for something. Sorry for wasting your time....
Messages 27007 - 27036 of 27459   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