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: 3764
  • 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 22954 - 22989 of 27465   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
22954 Victor Bouffier
perl_jam03 Send Email
Mar 6, 2006
8:37 pm
... What Randal suggests is in perldoc -q '~' under the linux/unix command line. Windows users can search through the Activeperl documentation for the same...
22955 Damien Carbery
daymobrew Send Email
Mar 6, 2006
9:15 pm
... examples ... 'echo' and ... destroying ... before posting ... And perlfaq4 ...
22956 merlyn@...
merlynstoneh... Send Email
Mar 6, 2006
9:22 pm
... Damien> And perlfaq4 Yeah, that's actually the one I was thinking of. Damien>...
22957 jabir ahmed
jabirahmed Send Email
Mar 7, 2006
8:17 am
How can i convert using regular expressions "ThisIsMyText&quot; to "this_is_my_text" thanks in advance jab [Non-text portions of this message have been removed]...
22959 Thiago Nacimento Rodr...
nascimentoth... Send Email
Mar 7, 2006
11:54 am
Try this: $str =~ s/([A-Z])/_&#92;l$1/g; $str =~ s/^_//; _______________________________________________________ Yahoo! Acesso Grátis - Internet rápida e grátis....
22960 jabir ahmed
jabirahmed Send Email
Mar 7, 2006
12:37 pm
thanks ... -- To try is to risk failure, but risk must be taken, Because the greatest Hazard in life is to risk nothing. Phone: +91 98861 36420 email:...
22961 Wolcott, Kenneth A
kaw_amfam Send Email
Mar 7, 2006
4:56 pm
Hi; Could someone explain what functionality I don't have or issues that I might experience as a result of these warning(s) and/or error(s) that I receive when...
22962 julian thomas p
julianthomasp Send Email
Mar 8, 2006
12:54 am
hello, i have wriiten a code fro gene identification.it works in local sever(apache in my home).but when iam trying to run the script in web(domain) i geeting...
22963 Paul Archer
tigger@... Send Email
Mar 8, 2006
2:44 am
... Permissions mean nothing if they are not for the right user. First, who *owns* the file and directory? Is it the same user that the webserver runs as?...
22969 miema83 Send Email Mar 8, 2006
2:02 pm
Let me introduce my self guys... Im an amatir about PERL...I choose this ProgrammingLanguage couse i'm so attracted to make my skripsi(Lastest on the College...
22970 Paul Archer
tigger@... Send Email
Mar 8, 2006
2:17 pm
... ^^^^^^^^^^^^^^^^^^ Oh. I am *SO* scared! (I need to take a shower now. Unclean! Unclean!) ... If you live in a small town /You might meet a dozen or two/ ...
22971 Peter L. Berghold
blue_cowdawg Send Email
Mar 8, 2006
2:23 pm
... Hash: SHA1 ... Communications major? - -- ... Peter L. Berghold Peter@... "Those who fail to learn from...
22972 fkleinbu@...
fkleinbu Send Email
Mar 8, 2006
3:28 pm
... My oh my how things have changed on the Internet over the past 14 or 15 years I have been on it.. In fairness to mienma83, English may not be his/her ...
22973 Peter L. Berghold
blue_cowdawg Send Email
Mar 8, 2006
3:48 pm
... Hash: SHA1 ... Yes... that may well be the case and I must confess I may have been (for me) unusually insensitive. Still, there was a bit of humor that is...
22974 Shawn Corey
shwncorey Send Email
Mar 8, 2006
4:13 pm
... Only geeks can make up words since they are the only ones who can grok the transcenatural ambiessence of the meaninificances. -- Just my 0.00000002 million...
22975 Peter L. Berghold
blue_cowdawg Send Email
Mar 8, 2006
4:18 pm
... Hash: SHA1 ... My daughter had two reactions to that: 1) this has got to be a comm major turned geek. 2) If you don't think that comm majors are geeks,...
22976 Lou Hernsen
Luinrandir Send Email
Mar 8, 2006
6:18 pm
I am using an array of arrays $Array[$a][$b] I would like to know if there is an easy way to write each array to a line in a file so that the file reads...
22977 Shawn Corey
shwncorey Send Email
Mar 8, 2006
6:23 pm
... Easy is a relative term. How about: my @Array = ( [ 'A A', 'B B', 'C C', 'D D', ], [ 'E E', 'F F', 'G G', 'H H', ], ... ); -- Just my 0.00000002 million...
22978 merlyn@...
merlynstoneh... Send Email
Mar 8, 2006
6:29 pm
... Lou> I would like to know if there is an easy way to write Lou> each array to a line in a file so that the file reads something like Lou> "A A","B B","C...
22979 Mirza Abdullah Jan
jan576pk Send Email
Mar 8, 2006
7:43 pm
hi all i need a help i am getting data from remote locate on web.I stored that data (whcih is in many rows) in a variable. when i want to put the data into...
22980 Shawn Corey
shwncorey Send Email
Mar 8, 2006
7:56 pm
... Could we see some code of what you have so far? If, by rows, you mean lines of text, you can separate them with: my @lines = split /\n/, $data; -- Just my...
22981 Mirza Abdullah Jan
jan576pk Send Email
Mar 8, 2006
8:44 pm
Dear Shawn Corey Thanks you very much for help. may you ever stay happy by the grace of God. Take care ... ok,but ... asnwer...
22982 Shawn Corey
shwncorey Send Email
Mar 8, 2006
9:02 pm
... Thank you for the blessing. A word of advise, not just to you but to everyone who is asking for help: it is important to include the code that is giving...
22983 Lou Hernsen
Luinrandir Send Email
Mar 9, 2006
2:43 am
delimited files be it by comma or colon or what ever.... what I used to call in BASIC as sequential (vs random) are all I know... I am still trying to learn...
22984 Lou Hernsen
Luinrandir Send Email
Mar 9, 2006
4:31 am
Thanks ... I'll see what I can do with it. So [] is the first in $Array[$X][$Y] and [$Y] is the position inside of [$X] yeah.. I grasp it... thanks again. ...
22985 lei_optimumsource
lei_optimums... Send Email
Mar 9, 2006
5:07 am
We are expanding, and we are in need of Perl Programmers, to service on of our business partners in the United States, with the following qualifications: * at...
22986 Shawn Corey
shwncorey Send Email
Mar 9, 2006
5:24 am
... OK, you have lost me. What 'instead of'? I `use Data::Dumper;` in my code to inspect my data structures. From that I get: #!/usr/bin/perl use Data::Dumper;...
22987 Alan_C
acummingsus Send Email
Mar 9, 2006
7:43 am
On Wednesday 08 March 2006 20:24, Lou Hernsen wrote: [ . . ] ... Not in the next case (I think because) "assignment&quot; is involved. (as in *assigned* to the...
22988 Lou Hernsen
Luinrandir Send Email
Mar 9, 2006
2:29 pm
why the >'< sign and not the >"< sign --- single and double quotation marks Lou ... From: Shawn Corey To: perl-beginner@yahoogroups.com Sent: Thursday, March...
22989 Lou Hernsen
Luinrandir Send Email
Mar 9, 2006
2:33 pm
I just want to say thank you for the most plain english responce I think I have ever recieved. (that means I can understand it!) Thanks for taking the itme.......
Messages 22954 - 22989 of 27465   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