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 27421 - 27450 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
27421 Bilashi Sahu
bilashi_sahu Send Email
Jan 9, 2013
2:14 pm
Hello, I'm sorry for not informing you about our trip to Manila Philippines.We had to visit a resort in Manila Philippines,Unfortunately we got mugged at GUN...
27422 Charles K. Clarkson
charlesclarkson Send Email
Jan 10, 2013
2:00 am
Ah. The classics are the best. Charles Clarkson -- I'm not really a smart person. I just play one on the Internet....
27423 Noah
noah@mci.net Send Email
Jan 16, 2013
10:59 pm
Hi there, I am trying to remove all the values in @ignore_routers from the @devices array. %hostnames is where the entire list of hostnames reside. Is there...
27424 Matthew K
matt_hew.rm Send Email
Jan 17, 2013
1:37 am
The most efficient way to do it, would be to use a hash of hashes initially, and use keys like "ignored" and values of one or zero in the value of the...
27425 Charles K. Clarkson
charlesclarkson Send Email
Jan 17, 2013
5:50 am
... Instead of ignoring the routers in @devices, you might ignore the routers in %hostnames and then retrieve the routers in @devices. my %devices =...
27426 warrengallin Send Email Jan 19, 2013
11:51 pm
I am having a problem with some lines of text matching my regular expression, but the captured parts of the match are not defined. Attached is a minimal...
27427 timothy adigun
eternity8008 Send Email
Jan 20, 2013
12:45 am
Hi warrengallin, Please check my comments below: ... suggest using Perl function *split, *like so, to solve this: #!/usr/bin/perl use strict; use warnings; my...
27428 Oral Akkan
oral_akkan Send Email
Jan 20, 2013
2:10 am
Hi Just use this one and write again if it does not work. I cannot test it for you, because in the originat text you must have tabulator (\t) and I see here...
27429 Warren Gallin
warrengallin Send Email
Jan 20, 2013
2:10 am
Tim, That worked perfectly. Although I am curious about the reason for the regex approach failing, your suggestions makes my script work, which is the most...
27430 Jenda Krynicky
jendaperl Send Email
Jan 21, 2013
1:04 am
From: "warrengallin&quot; <wgallin@...> ... The line above is the problem. The $1 and friends contain the data from the last successful regexp match and...
27431 Warren Gallin
warrengallin Send Email
Jan 21, 2013
3:58 am
Thanks, that explains it - I'll keep this in mind in the future. Warren Gallin...
27432 afbach1 Send Email Jan 21, 2013
8:59 pm
if ($temp_in =~ m/^(WJG\d{4})\t([^\t]*)\t([^\t]*)\t([^\t]*)\t/){ print "Match is:\n $&\n"; my $sequence = $4; $sequence =~ tr/[a-z]/[A-Z]/; $sequence =~...
27433 perl-beginner@yahoogr... Send Email Feb 1, 2013
9:52 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27434 Paul.G
medura43 Send Email
Feb 7, 2013
3:12 pm
Hey http://www.isasecurite.com/nlmrf/m6lunawy0.png Paul.G 2/7/2013 4:12:17 PM [Non-text portions of this message have been removed]...
27435 davebest99 Send Email Feb 13, 2013
5:34 am
Hi! I have a "red herring" that is driving me crazy. I found your comment, and hope you can help. I have a Yahoo Small Business web page with a <form> that...
27436 Charles K. Clarkson
charlesclarkson Send Email
Feb 14, 2013
2:06 am
... The language is named Perl, never PERL. ... I think you mean a JavaScript script. Java is a vastly different programming language than JavaScript. ... ...
27437 afbach1 Send Email Feb 15, 2013
1:03 am
... script works fine until I include a Java \n"; A Java "\n"? (really - it's a "Perl script" - that upper case is like fingernails on the blackboard). But not...
27438 perl-beginner@yahoogr... Send Email Mar 1, 2013
9:35 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27439 perl-beginner@yahoogr... Send Email Apr 1, 2013
7:44 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
27440 Norah Jones
nh.jones01@... Send Email
Apr 5, 2013
1:03 pm
I would retrieve my hash table when i pass it in argument at a function. In my case, function1 return my hash table, then i pass my hash table in argument to...
27441 Charles K. Clarkson
charlesclarkson Send Email
Apr 5, 2013
3:50 pm
... Pass it by reference: function2( \%hash ); Then work with the hash reference: sub function2 { my $hash = $_[0]; my code browse hash reference; } Or work on...
27442 timothy adigun
eternity8008 Send Email
Apr 5, 2013
4:59 pm
Hi Norah, ... Change the above to: my %hash = @_; # not the first element $_[0] in the special array @_ Since you are passing only the hash to the...
27443 worldcitizen524 Send Email Apr 10, 2013
1:09 pm
I am trying to learn perl and for that reason I installed perlbrew. But it doesn't work. Look at the post here on the Crunchbang Linux forum: ...
27444 Darryl L. Pierce
mcpierceaim Send Email
Apr 18, 2013
5:26 pm
I've written a class for use by my project, named qpid::proton::Array. It seeks to be a replacement in our code for a standard array, adding additional...
27445 Jenda Krynicky
jendaperl Send Email
Apr 19, 2013
12:04 am
From: "Darryl L. Pierce" <mcpierce@...> ... use strict; # !!! The problem is this line: $self->{_elements} = @elements; It's missing a backslash. This...
27446 Oral Akkan
oral_akkan Send Email
Apr 19, 2013
1:28 am
I don't know really but is that ok with two semi colons? lives_ok(sub {$array = qpid::proton::Array->new(0, qpid::proton::INT);},          "Can create...
27447 Darryl L. Pierce
mcpierceaim Send Email
Apr 19, 2013
3:21 am
... Which part do you mean? -- Darryl L. Pierce <mcpierce@...> http://mcpierce.multiply.com/ "What do you care what people think, Mr. Feynman?" [Non-text...
27448 Jenda Krynicky
jendaperl Send Email
Apr 19, 2013
11:07 am
From: Oral Akkan <oral_akkan@...> ... Ye.s Both are fine. Let me reformat it for you: lives_ok( sub { $array = qpid::proton::Array->new(0,...
27449 ssysong
ubuntubiker@... Send Email
Apr 27, 2013
7:29 pm
i want to fetch images from www.baidu.com. i use the LWP module.i can get the image urls,but i can not download it. look forward ur helps. [Non-text portions...
27450 perl-beginner@yahoogr... Send Email May 1, 2013
7:44 am
Good day, This Perl-Beginner group was set up for people to learn about the Perl language, and how it may be used in their websites. Although there are...
Messages 27421 - 27450 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