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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 24888 - 24920 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24888
I would like to know the correct syntax to allow me to substitute an apostrophe (or single-quote) with a backslash prefix. The following code s/(\')/\\\'/g; ...
hooyar66
Offline Send Email
Feb 1, 2007
3:11 pm
24889
... an ... This: /(\')/\\\'/g; Should read: /\'/\\\'/g; Removed the unnecessary paretheses. Any ideas? NJH...
hooyar66
Offline Send Email
Feb 1, 2007
8:52 pm
24890
... hooyar66> Any ideas? About what? Looks like you solved it. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 ...
merlyn@...
merlynstoneh...
Online Now Send Email
Feb 1, 2007
9:30 pm
24893
... 777 0095 ... training! ... Hi Randal No still not solved it. The code below although it 'looks' correct is not being interpreted correctly: ########### #!...
hooyar66
Offline Send Email
Feb 2, 2007
10:51 am
24894
... Your problem is in thinking that this is a Perl issue. It's just your editor. Mine handles this code just fine: ...
Rob Biedenharn
rab6687
Offline Send Email
Feb 2, 2007
2:00 pm
24895
Anybody knows a method to get STDERR from $chan->shell in Net::SSH2? -- Garcia [Non-text portions of this message have been removed]...
Garcia JR
josegarciaju...
Offline Send Email
Feb 2, 2007
2:09 pm
24896
... 503 ... etc. ... interpreted ... escaped ... will ... Thanks Rob - time to change my editor ;-)...
hooyar66
Offline Send Email
Feb 2, 2007
2:15 pm
24897
The Following also not give me proper result. ... __________________________________________________________ Yahoo! India Answers: Share what you know. Learn...
srini vasan
ensrinivasan
Offline Send Email
Feb 2, 2007
2:42 pm
24898
Tainting Untainting I am trying to write code that insure safe input from a form. This is what I have come up with after a few days of study... Being that I...
Lou Hernsen
luinrandir
Offline Send Email
Feb 2, 2007
2:51 pm
24900
Hi All, I am new this to group. I started working with perl cgi scripting. I would like to know,how we can do html paging in perl. If you have any links ...
Shyam S
shyamkumars
Offline Send Email
Feb 5, 2007
3:24 am
24901
Hi, If i run the code under user say abc, it works but i try to run it under different user say xvy, it give some perl module error.. More details : 1) Error...
Prasanna Goupal
perl_developer
Offline Send Email
Feb 5, 2007
7:07 am
24902
A clue is write your HTML pages with: use CGI qw/:standard/; See perldoc CGI or http://search.cpan.org/~lds/CGI.pm-3.25/CGI.pm for more details. HTH. perl -e...
tnas
nascimentoth...
Offline Send Email
Feb 5, 2007
12:20 pm
24903
... Shyam> I am new this to group. I started working with perl cgi scripting. I would Shyam> like to know,how we can do html paging in perl. If you have any...
merlyn@...
merlynstoneh...
Online Now Send Email
Feb 5, 2007
7:41 pm
24904
Excuse my question friends, does anyone have the PERL script that can create the html with links. CAN ANYONE SHARE IT! PLEASE OR CAN ANYONE PUT ME IN THE RIGHT...
hawevine
Offline Send Email
Feb 6, 2007
7:01 am
24905
... The thing that we get while searching in a google page. I had a senario, I got lot of user list in database. I would like to get displayed each of them as...
Shyam S
shyamkumars
Offline Send Email
Feb 6, 2007
11:05 am
24906
I an wanting to figure out how to create a safe form input .. untainter.. i guess. below is some code... but I think that one thing I do not have, that I may ...
Lou Hernsen
luinrandir
Offline Send Email
Feb 6, 2007
4:06 pm
24907
This is possibly more of a Red Hat Linux problem than a Perl problem, but perhaps someone here can help me. I'm trying to migrate a simple website that uses...
Eric Boyajian
ericboyajian
Offline Send Email
Feb 6, 2007
11:11 pm
24908
Since you are not getting an error to the screen, I'd suspect it's running, just sending the output to an unexpected location.. Try changing the print to: ...
Frank Kleinburg (el O...
fkleinbu
Offline Send Email
Feb 7, 2007
12:49 am
24909
Eric: I have Perl 5.8.8 on Fedora Core 5 - Kernel 2.6.18-1.2257.fc5. My perl scripts are in the following folder /programs/scripts/perl ...I can execute it...
Scott Ford
scott_j_ford
Offline Send Email
Feb 7, 2007
1:38 am
24910
Oops!! I misunderstood your question. perl -e '$_="tMM naaCt Feocmama_itpUilucoGa";$_.=$1,print $2 while s/(..)(.)//;print substr$_,1,1;' "...just because I...
tnas
nascimentoth...
Offline Send Email
Feb 7, 2007
11:34 am
24911
Hi hawevine, I imagine that my reply for "Shyam S" in the thread "HTML Paging" apply in this question. Have a look at this post. Moreover, other suggest is...
tnas
nascimentoth...
Offline Send Email
Feb 7, 2007
11:50 am
24912
I hope this is the appropriate forum to ask this question. assume I have a list like this: @input = ('1', 'hostname1', '1', 'hostname2', '1', 'hostname3', '2',...
jslay77
Online Now Send Email
Feb 7, 2007
4:00 pm
24913
Helo All, I have 3 or 4 strings situations as below. How can I take only the IP or Hostname. One Target[busca.router03]: -#Fa6/31:pubcomm@... +...
Marcos Onisto
mlonisto
Offline Send Email
Feb 7, 2007
4:18 pm
24914
Thank you for your suggestions. I tried both `echo "hello world" > test.txt`; and `env > environment.txt`; but no files were created. I believe that Linux is...
Eric Boyajian
ericboyajian
Offline Send Email
Feb 7, 2007
4:27 pm
24915
Scott, Thanks you for your advice. My path PATH looks good -- it includes /usr/bin so I can indeed run Perl by simply typing "perl" in any working directory....
Eric Boyajian
ericboyajian
Offline Send Email
Feb 7, 2007
4:34 pm
24916
Eric: I would be looking at the Apache configuration files. I had a problem running PHP and Postgresql and it had to do with the Apache configs. I haven't used...
Scott Ford
scott_j_ford
Offline Send Email
Feb 7, 2007
5:41 pm
24917
... Why don't you post some code showing your attempt and then we can help you if it doesn't do what you expect? Here's a hint, to initialize a hash element...
Rob Biedenharn
rab6687
Offline Send Email
Feb 7, 2007
5:54 pm
24918
Has anyone had problems with the "X" command in debugger not displaying values of arrays? Is there another debugger command that will display arrays (@...
Robert Brown
rdabman4
Offline Send Email
Feb 7, 2007
7:30 pm
24919
Eric: I found a website that might help you out. http://www.thesitewizard.com/archive/addcgitoapache.shtml I scanned through this site and it looks like it...
Scott Ford
scott_j_ford
Offline Send Email
Feb 7, 2007
10:22 pm
24920
... Rob, Thanks for the quick response...and your $hash{$key} ||=[] hint :) I actually got around this whole thing by retrieving my data differently from...
jslay77
Online Now Send Email
Feb 8, 2007
12:37 am
Messages 24888 - 24920 of 26720   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