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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 24192 - 24222 of 26718   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24192
Hi all, I am trying to build the makefile to use the MQ utility.. downloaded the tar file from website. am getting following error. Your help is higly...
raju_visu
Offline Send Email
Sep 1, 2006
7:42 am
24193
Is there a better way of doing this? $string =~ s/\W/_/g; $string =~ s/_/ /g; I want to remove all non-std characters EXCEPT for whitespace. With the two...
hooyar66
Offline Send Email
Sep 1, 2006
1:58 pm
24194
Is there any particular reason that $string =~ s/\W/ /g won't work for you? Have you tried it? Paul ... "As democracy is perfected, the office represents, more...
Paul Archer
geek65535
Offline Send Email
Sep 1, 2006
2:27 pm
24195
hey look what I found does this help? http://www.cs.tut.fi/~jkorpela/perl/regexp.html s/\w+/ /g a "word": a nonempty sequence of alphanumeric characters and...
Lou Hernsen
Luinrandir
Offline Send Email
Sep 1, 2006
2:35 pm
24196
Er... yes I've tried it. I want to first replace non-word characters with "_", which changes whitespace too. To return my intentional whitespace I then have to...
hooyar66
Offline Send Email
Sep 1, 2006
2:36 pm
24197
Thanks Paul/Lou Friday afternoon brain-lapse...zzzzz ... change ... groups/ ... -- ... some ... downright ... --...
hooyar66
Offline Send Email
Sep 1, 2006
2:44 pm
24198
... Lou> hey look what I found Lou> does this help? Lou> http://www.cs.tut.fi/~jkorpela/perl/regexp.html "Date of last update: 2000-10-30" And even with that...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 1, 2006
2:46 pm
24199
Hi Okay I cant seem to figure out why the following 'if' statement is not working. The following evaluation is considering the variables a match and is...
Noah
admin2@...
Send Email
Sep 2, 2006
4:41 pm
24200
... You need to quote your strings. ... You also need to use the string comparison operator, "eq", rather than the numeric comparison operator, "==". -- CCD...
Chad Perrin
perrin@...
Send Email
Sep 2, 2006
5:52 pm
24201
... actually I was reading things wrong. the comparison is working fine. thanks, Cheers, Noah [Non-text portions of this message have been removed]...
Noah
admin2@...
Send Email
Sep 2, 2006
8:55 pm
24202
... Hi, okay did that. the strings are in quotes now. ... I am using the eq operator that didnt help either. any other clues? cheers, Noah [Non-text portions...
Noah
admin2@...
Send Email
Sep 2, 2006
8:55 pm
24203
Hi there, is there anyway to put this evaulation on one line? next if ($community{$community_number}{$community_name} != "") && ( $community_subname eq...
Noah
admin2@...
Send Email
Sep 2, 2006
9:47 pm
24204
Turn on warnings, and you'll have your answer. *Always* turn on warnings, and you'll have your answer much more often. Paul ... As to Jesus of Nazareth...I...
Paul Archer
geek65535
Offline Send Email
Sep 3, 2006
1:25 am
24205
... thanks Paul - will do. cheers, Noah...
Noah
admin2@...
Send Email
Sep 3, 2006
3:52 am
24206
Hello all. My name, as you can see from my Yahoo ID, is Mike. My wife and I are web site designers. We are new to alot of the languages involved with...
mike_austin23
Offline Send Email
Sep 3, 2006
4:39 am
24207
... mike> Hello all. My name, as you can see from my Yahoo ID, is Mike. My mike> wife and I are web site designers. We are new to alot of the mike> languages...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 3, 2006
12:10 pm
24208
... Noah> Hi there, Noah> is there anyway to put this evaulation on one line? Noah> next if ($community{$community_number}{$community_name} ...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 3, 2006
12:11 pm
24209
Thanks for the information! I am thankful that there are so many experts in this group!...
mike_austin23
Offline Send Email
Sep 3, 2006
10:22 pm
24211
I was given a link above and would like to assist other newcomers by providing the correct link to the LearnPerl.org site. It is <a...
mike_austin23
Offline Send Email
Sep 3, 2006
10:22 pm
24212
hi friends , IS there a way to get sum of one row of a table from PERL script ? and to print it as a varible . avnit...
avnit singh
avnit_99
Offline Send Email
Sep 4, 2006
5:22 am
24213
... mike> I was given a link above and would like to assist other newcomers by mike> providing the correct link to the LearnPerl.org site. mike> It is <a...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 4, 2006
12:25 pm
24214
Hi, This is regarding perl hashing. I am creating a 3 level hash (actually 2 such hashes at a time) with approx. 2.6 million entries. Regarding length of each...
Sujitkumar Bade
sujitkumar_fin
Offline Send Email
Sep 4, 2006
1:31 pm
24215
Hi Noah, Please replace the operator '==' with 'eq'. It will works.. Thanks, Phani. Noah <admin2@...> wrote: Hi Okay I...
Phanidhar
phaniadhar
Offline Send Email
Sep 4, 2006
2:09 pm
24216
... Sujitkumar> This is regarding perl hashing. I am creating a 3 level hash (actually Sujitkumar> 2 such hashes at a time) with approx. 2.6 million entries. ...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 4, 2006
2:14 pm
24217
Hi there, I am attempting to print (output) the data from one filehandle called OLD to another called COMMUNITY. In the following code I have modified the...
Noah
admin2@...
Send Email
Sep 5, 2006
6:30 pm
24218
... Noah> open COMMUNITY, "<it" || die "Failed to open $old_file: $!"; Noah> print COMMUNITY "$_"; Those two don't make sense. If you're opening...
merlyn@...
merlynstoneh...
Offline Send Email
Sep 5, 2006
7:06 pm
24219
Hello , Can anyone just help me in telling which book should i refer for perl. I have to learn perl within 1-2 months. I don't even know ABC .. of it. Just...
Rimjim Suri
rimjim_s
Offline Send Email
Sep 5, 2006
8:32 pm
24220
I would recommend this book: "Professional Perl Programming, from WROX Press" Excellant book, anything you need in perl this book has it. Its a huge book...
Raja Rajasekaram
fastaero95
Offline Send Email
Sep 5, 2006
9:33 pm
24221
Thank you raja. I'll sure install the software today. Raja Rajasekaram <raja_rajasekaram@...> wrote: I would recommend this book: "Professional...
Rimjim Suri
rimjim_s
Offline Send Email
Sep 5, 2006
9:42 pm
24222
... The camelid trilogy from O'Reilly is excellent: Learning Perl (aka The Llama Book) Intermediate Perl (aka The Alpaca Book, aka PORM) Programming Perl (aka...
Chad Perrin
perrin@...
Send Email
Sep 5, 2006
10:41 pm
Messages 24192 - 24222 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