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...
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...
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...
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...
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...
... 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...
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@...
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@...
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@...
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@...
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@...
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...
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> 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...
... 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...
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> 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. ...
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@...
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...
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...
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...
... 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...