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 25438 - 25477 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
25438 Jim Swanson
jswansonsr Send Email
Jun 30, 2007
4:51 pm
Sorry about the blank message. Clicked the wrong link! jrs...
25439 Ross
robothack Send Email
Jul 1, 2007
9:08 am
After a very long time thinking I decided to create a Yahoo Group with information on PHP&MySql. Their are quite a few of these sites and Forums around but the...
25440 sarveshjangid Send Email Jul 2, 2007
8:57 am
Dear all, i am quite new to perl. I am trying to run this one liner through cmd.exe on windows 2000 perl -e 'print "Matched!" if "This is my\nmulti-line...
25441 bike2ride
gl_bike2ride Send Email
Jul 2, 2007
9:03 am
Hi on windows take care of single and double quotes perl -e "print \"Hello, world!\n&#92;""...
25442 Scott Mayo
melph63825 Send Email
Jul 2, 2007
4:01 pm
It has been a while since I have done any perl scripting. I remember having this problem before and I am not sure if I actually figured it out or not. If I...
25443 Christian Wessel
wesselch Send Email
Jul 2, 2007
4:21 pm
Hello Scott, just try it with s/^\[.*&#92;] \[/\[/ Thats well defined. mfg/br, christian IT Systembetreuer/Geschäftsfeld PCO Informationstechnologie Continental...
25444 Rob Biedenharn
rab6687 Send Email
Jul 2, 2007
5:10 pm
... You could use a reluctant qualifier: s/^\[.*?\]// Or specifically look for non-]: s/^\[[^]]*\]// ...and if you want the space gone, too, add \s* to the...
25445 Lou Hernsen
luinrandir Send Email
Jul 2, 2007
5:46 pm
where do I look for more info on a perl chat room program? is there a certain command for sending info to certain people are logged on? Thanks Lou...
25446 Peter L. Berghold
blue_cowdawg Send Email
Jul 2, 2007
6:27 pm
... Hash: SHA1 ... Most chat programs assumes that there is a server somewhere that the clients all connect to over a TCP/IP (or other protocol) socket. The ...
25447 Scott Mayo
melph63825 Send Email
Jul 2, 2007
8:29 pm
I am going to ask this again since I don't think that I asked what I needed to the first time. I tried the suggestions, but they did not do what I wanted. I...
25448 Rob Biedenharn
rab6687 Send Email
Jul 2, 2007
8:53 pm
... You need to use ()'s to capture the parts of the regular expression match that you're interested in keeping: For example: perl -w -e ' $line = "[the time...
25449 Dukelow, Don
dondukelow Send Email
Jul 2, 2007
9:15 pm
I've posted this before a after several suggestion offline it was suggested to repost to all. I'm using Net::telnet to log into a remote server and once there...
25451 Schelske, Steve K.
schelske.geo Send Email
Jul 3, 2007
12:43 pm
Active Perl/Win XP I ran into what I thought was strange behavior with a glob and was hoping for an explanation. This first glob does what I expect - it...
25452 Rob Biedenharn
rab6687 Send Email
Jul 3, 2007
1:28 pm
... Yes, it is. You've asked for two patterns: one is c:/temp/globtest/ test and the other is *. If you want files that begin with the five characters t, e,...
25453 Jenda Krynicky
jendaperl Send Email
Jul 3, 2007
1:44 pm
From: "sarveshjangid" <sarveshjangid@...> ... The problem is that cmd.exe doesn't understand the singlequotes as parameter delimiters. You have to...
25454 Schelske, Steve K.
schelske.geo Send Email
Jul 3, 2007
2:16 pm
Thank you to all who responded. It all makes sense now. I will strip whitespace off the end of the file name to make sure I'm only asking for one pattern. ...
25455 Dukelow, Don
dondukelow Send Email
Jul 3, 2007
4:48 pm
First I have no control over the sudoers file, the customer would never allow a NOPASSWD entry in it. Secondly I've tried redirecting the command output into...
25457 John Francini
francini@... Send Email
Jul 4, 2007
3:38 pm
Sorry, that won't work. According to the Camel Book (Programming Perl): "If you want to glob filenames that might contain whitespace, you'll need to use the...
25460 aditi gupta
aditi9783 Send Email
Jul 6, 2007
8:31 pm
Hello All: Which one of the two versions of blessing is better? The 'two parameter' version. e.g. bless $objref, $class; Or the 'no parameter' version. What...
25461 merlyn@...
merlynstoneh... Send Email
Jul 6, 2007
8:47 pm
... aditi> Which one of the two versions of blessing is better? aditi> The 'two parameter' version. e.g. bless $objref, $class; aditi> Or the 'no parameter'...
25462 Ross
robothack Send Email
Jul 7, 2007
5:52 am
After a very long time thinking I decided to create a Yahoo Group with information on PHP&MySql. Their are quite a few of these sites and Forums around but the...
25463 elavazhagan perl
elavazhagan.perl@... Send Email
Jul 7, 2007
5:57 am
Hia I got the diagnostic msg as follows while executing the mutate.pl.Kindlysuggest me how definding some of the variables will solve this error....... Use of...
25470 Kevin.Moseley@... Send Email Jul 9, 2007
3:01 pm
I will be out of the office starting 07/09/2007 and will not return until 07/13/2007. If you need immediate assistance please contact John Belmonte @ ...
25471 hooyar66 Send Email Jul 9, 2007
5:30 pm
I am trying to pass a filehandle to a subroutine but cannot get the syntax right. I have been reading about using 'prototypes&#39; but something isn't sinking...
25472 Jabir Ahmed
jabirahmed Send Email
Jul 9, 2007
5:49 pm
use strict; use diagnostics; open FH, ">mydat.txt"; sub pass_fh(*); pass_fh(\FH); sub pass_fh(*) { my $MYFILE = shift @_; print $MYFILE "Filehandle was...
25473 Arun Pandey
arunp@... Send Email
Jul 9, 2007
6:24 pm
I think the problem lies with your subroutine randomelement(), Thats because rand @array might be giving you a fractional index, instead of an integer index,...
25474 Jabir Ahmed
jabirahmed Send Email
Jul 9, 2007
6:30 pm
You can also try IO::File; http://www.davidpashley.com/articles/perl-io-objects.html -- Nothing is as embarrassing as watching someone do something that you...
25475 Brad Lhotsky
brad@... Send Email
Jul 9, 2007
6:31 pm
Ick. Don't use subroutine prototyping. open( my $fh, 'w', 'mydata.txt' ) or die "unable to open file: $!\n"; pass_fh_($fh); sub pass_fh { my $fh = shift; } ...
25476 hooyar66 Send Email Jul 9, 2007
8:25 pm
... get the ... result of ... - I ... Many thanks guys I got it to work as: #!c:/perl/bin/perl.exe -w use strict; use diagnostics; my $fh; ...
25477 aditi gupta
aditi9783 Send Email
Jul 9, 2007
8:34 pm
Hello All: I have an array, @array = (0, undef, 2, undef); And I want different operations on numerical and undef array elements. Since numerically undef...
Messages 25438 - 25477 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