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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 21518 - 21550 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
21518
Hi, Why the error? Tips, suggestions, etc. (I thought that I'm using it correctly). But: \1 better written as $1 at /home/al/bin/wthr_pbml line 9. \2 better...
acummingsus
Offline Send Email
Aug 1, 2005
7:04 am
21519
... # line 9 is the next line ... al@p2bs103:~$ perldoc perlre > plre.txt (opens the text file plre.txt in the Kate editor, KDE desktop, Slackware 10.1) ...
acummingsus
Offline Send Email
Aug 1, 2005
9:09 am
21521
... It's not an error, it's a warning. ... Because Perl prefers you use $<DIGIT> outside of the *actual* regular expression. The right-hand side of an s/// is...
Jeff 'japhy' Pinyan
evilffej
Offline Send Email
Aug 1, 2005
11:38 am
21522
... [ why the error ] ... regex, but ... \1 is a part of a capturing group. And, capture group is part of the m for match a.k.a "regex" a.k.a. m/(.)\1/;...
acummingsus
Offline Send Email
Aug 1, 2005
7:50 pm
21523
Hi All, I am a beginner in perl. I want to separate the contents of a file (shown below) into different files. ... 10.05.2005 10:00 - amit 10.05.2005 10:10 -...
apsawant
Offline Send Email
Aug 2, 2005
1:44 am
21524
... #/usr/bin/perl -w my $file = 'file.'; open(FI,"< DATA") or die "cant open Date: $!"; foreach (<FI>) { if (/^\d\d\.(\d\d)\..*/) { open(FO, ">> $file$1") or...
Huaer XC
xcjia
Offline Send Email
Aug 2, 2005
2:01 am
21525
I have a fairly long script and want to use a hash to collect data. This hash will need to be accessed by a number of subroutines, each of which will add or...
johnbr123zzz
Offline Send Email
Aug 2, 2005
2:07 am
21526
... different ... [...] ... containing ... this ... Hello Amit This is a faily simple problem. What have you tried so far? We will be eager help you when we...
a_z0_9_blah
Offline Send Email
Aug 2, 2005
7:35 am
21527
Hi Again You may also want to look at the substr function which will also be on the same perldoc web page as the one containing the redo function. Chris...
a_z0_9_blah
Offline Send Email
Aug 2, 2005
7:41 am
21528
... Most of what I learned about scope I learned from Randal Schwartz's writings. His "Learning Perl" book and Linux Magazine Perl articles are great, super. ...
acummingsus
Offline Send Email
Aug 2, 2005
7:41 am
21531
Hi, Please use following code. ####################################################### #!/usr/bin/perl use strict; my $line; while($line = <STDIN>) { my @array...
Prasanna Goupal
perl_developer
Offline Send Email
Aug 2, 2005
8:36 am
21532
hello everybody, I have tried configuring as advised by the group but still it is displying the message 'page cannot b displayed'. Start Settings Control Panel...
aditi gupta
aditi9783
Offline Send Email
Aug 2, 2005
8:57 am
21533
... Use an object. Most are hash based and passing them by reference is pretty automatic. You also can create customized subroutines to ease data changes. HTH,...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Aug 2, 2005
12:54 pm
21534
... Well, the preferred way would be, as you've said, to use references. There's plenty of standard documentation to help you learn about them, and a good...
Jeff 'japhy' Pinyan
evilffej
Offline Send Email
Aug 2, 2005
1:36 pm
21535
Don't forget that you have to access your script via a browser. If you simply use "my computer" or windoze explorer and click on the web page it will not run...
Ken Shail
kenshail2003
Offline Send Email
Aug 2, 2005
8:26 pm
21536
Forget my earlier email on this thread. I just made a test and got similar similar results to you with my scripts (that are in c:\Intepub\wwwroot) because in...
Ken Shail
kenshail2003
Offline Send Email
Aug 2, 2005
10:03 pm
21537
Hi, I joined this group in hopes of learning PERL or more truthfully get help with what I learned thus far about PERL for my website. I am not looking at...
chalitame
Offline Send Email
Aug 3, 2005
9:32 am
21538
... A good practice amongst web designers is separating design and data. CSS does design while HTML (or xhtml) holds data. CGI scripts can do the same thing....
Charles K. Clarkson
charlesclarkson
Offline Send Email
Aug 3, 2005
9:47 am
21539
Oh thank you Charles. This sounds like a wonderful thing, but where do i look at it? Sorry if I am a bother. Chalita. "Charles K. Clarkson"...
chalita remeraz
chalitame
Offline Send Email
Aug 3, 2005
12:37 pm
21540
... CPAN is your friend. http://www.cpan.org/misc/cpan-faq.html#Where_find_Perl_modules HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Aug 3, 2005
1:54 pm
21541
Thanks for all your replies. Your advice (and examples) has helped to clarify what I need to do now and what would be nice to do in the future. Regards John ...
johnbr123zzz
Offline Send Email
Aug 3, 2005
8:51 pm
21542
Hi, We have a few great opportunities for Perl, Unix/linux/solaris professionals in Bangalore, India. The companies are some of the best to work for in the...
alphaeus_perl
Offline Send Email
Aug 4, 2005
2:53 am
21543
Hi, $del = 0, s/^.*\n//, if /-- no history end --/; Is it safe to say it like ^^that^^ ? (it works). -- I've code and __DATA__ enclosed that does the desired...
acummingsus
Offline Send Email
Aug 4, 2005
3:58 am
21544
... You can use the range operator (".." or "...") to achieve the same thing, without having to use a flag variable ($del). Simply change your 'while' loop to:...
Damien Carbery
daymobrew
Offline Send Email
Aug 4, 2005
11:09 am
21545
From: "alphaeus_perl" <alphaeus_perl@...> Subject: [PBML] PERL & UNIX Expert!!! ... What makes you think you'll find experts in a...
Jenda Krynicky
jendaperl
Offline Send Email
Aug 4, 2005
4:06 pm
21546
... Perhaps I'll be banned too, but... While job advertisements do not belong on this list, neither do racial or personal angst posts. I do not appreciate...
Ron Goral
subscriptions@...
Send Email
Aug 4, 2005
4:22 pm
21547
... <subscriptions@u...> ... the best ... Bangalore ... 9 ... definitely ... Thanks. ... or ... job ... I've ... another ... speaking ... surprise ... racial...
hooyar66
Offline Send Email
Aug 4, 2005
4:36 pm
21548
IF you have any good experieeeeeec with one please let me know. I prefer not to be bound to Paypal only.... Thanks Danny...
keslerdan
Offline Send Email
Aug 4, 2005
6:44 pm
21549
Hello, I have a feeling that the posting of this message was a loss of temper due to an inordinate volume of spam... I agree that posting jobs in this group is...
ATEEQ
Offline Send Email
Aug 4, 2005
8:20 pm
21550
dear jenda, I think you are just pissed of for some personal reasons..i think somebody decided to give a project to a smart indian instead of you ?? :-)) inst...
Prakash
prakash@...
Send Email
Aug 4, 2005
8:30 pm
Messages 21518 - 21550 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