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: 3765
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? 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.

Messages

Advanced
Messages Help
Messages 21341 - 21370 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
21341 Sreeram B S
sreeramabsc Send Email
Jul 6, 2005
12:12 pm
Hi friends, I have one query about getting the input from the angle brackets ie from a file-handler within the angle brackets. ... #!/usr/bin/perl use strict; ...
21342 Damien Carbery
daymobrew Send Email
Jul 6, 2005
1:58 pm
... ie from a file-handler within the angle brackets. ... be $line now. But it is not. ... angle brackets? Do we get the data only at the beginning of the...
21343 Brad Lhotsky
brad@... Send Email
Jul 6, 2005
3:19 pm
perl does automatic garbage collection, but the structures have to go out of scope. This is why you'll usually hear people recommend that you declare a...
21344 Ken at Home
kenshail2003 Send Email
Jul 6, 2005
8:12 pm
Hi Brad Thanks for such a comprehensive answer and for spending so much time on my humble question. I was opening multiple files. Each file has an undefined...
21345 M. Lewis
cajun@... Send Email
Jul 7, 2005
3:59 am
... Sreeram, Damien's comments are right on. I'm not sure where you are in your learning process. If you're trying to learn to open files, then this comment...
21346 Sreeram B S
sreeramabsc Send Email
Jul 7, 2005
6:45 am
Hi friends, I am a bit confused in the usage of the: use strict; module and the global variables. How should I declare a variable as a global variable so that...
21347 Sreeram B S
sreeramabsc Send Email
Jul 7, 2005
7:52 am
Hi friends, I would wish to achieve the following file operation: ... Welcome, I welcome you to the world of perl !! Have a good time !! Thanks ! ... Welcome, ...
21348 Charles K. Clarkson
charlesclarkson Send Email
Jul 7, 2005
7:54 am
... My first question would be: Why use a global variable? (Followed closely by: Why use subroutine prototypes?) Contents of global.h: #!/usr/bin/perl use...
21349 Damien Carbery
daymobrew Send Email
Jul 7, 2005
8:58 am
... file as original. But, I would not prefer that method. I would wish to open the file in read-write mode and insert the "Hello world" line after...
21350 Brad Lhotsky
brad@... Send Email
Jul 7, 2005
2:13 pm
Please don't post homework here. As Randal has stated COUNTLESS times, its disrespectful and counterproductive to the entire classroom environment. ... -- ...
21351 Sreeram B S
sreeramabsc Send Email
Jul 8, 2005
7:07 am
Hello Brad, I would not agree with your statement that this is a "homework";. I have made all efforts to solve my problem and even then if I dont get a...
21352 Jenda Krynicky
jendaperl Send Email
Jul 8, 2005
12:11 pm
... Read perldoc -f seek perldoc -f tell The problem is that if you do seek somewhere into the middle of the file and print something you are going to...
21353 rhug505456 Send Email Jul 8, 2005
12:39 pm
Greetings, I'm not sure where to turn for an answer. I have a report that I need to print remotely, in three different locations. My system administrator...
21354 Brad Lhotsky
brad@... Send Email
Jul 8, 2005
3:42 pm
The wording of your question seemed like a handout from class. If its not homework, then apologies. ... -- Brad Lhotsky...
21355 live4zz Send Email Jul 9, 2005
1:13 am
hi, i can't seem to get some programs running from my MS IEE, but they run fine from the Command prompt. (i'm using Xampp on Windows XP). for example i have...
21356 Huaer XC
xcjia Send Email
Jul 9, 2005
7:53 am
you could try this: perl -i.bak -00 -pe 's/\n/\nHello World\n/' banner Huaer...
21357 aschwarz1309 Send Email Jul 9, 2005
7:46 pm
Cygwin doesn't release Tk with Perl. I've tried to compile Tk-804.027 from CPAN and am running into difficulties. Is there a Cygwin compatible binary release...
21358 david@...
person_xx Send Email
Jul 10, 2005
3:59 pm
Hi. I'm compiling a list of possble english words that do (or do not yet) exist. I have a program that recursively builds all the combinations of letters A-Z...
21359 Rohit Singh Gole
rohitgole2003 Send Email
Jul 11, 2005
2:56 pm
hi, i want to extract some PDB ID but ,since they are large in number so i want to write a perl script ,but i don't kow hoe to extract any data from...
21360 Peter L. Berghold
blue_cowdawg Send Email
Jul 11, 2005
3:02 pm
... Hash: SHA1 ... Lookup and try LWP::UserAgent. - -- ... Peter L. Berghold Peter@... "Those who fail to learn...
21361 Donato Azevedo
donatoufmg Send Email
Jul 11, 2005
3:03 pm
use LWP::UserAgent would be coded into something like this: use strict; use LWP::UserAgent; my $url = 'http://www.google.com/' my $ua = LWP::UserAgent->new; my...
21362 buxh42a Send Email Jul 11, 2005
3:14 pm
And, this is related to Perl in what way? Is this written in Perl? A word of advice in the future when writing programs you think are going to take awhile....
21363 Paul Archer
tigger@... Send Email
Jul 11, 2005
3:29 pm
First, your math is off. If you're looking for any combo that is 1-5 characters long you're actually going to end up with a list this long: 26 + 26x26 + ...
21364 didier2309 Send Email Jul 11, 2005
5:17 pm
I 'm writing a program that read files reading individual lines using a special separator instead of the new line character because I'm having a hard time...
21365 David Heayn
person_xx Send Email
Jul 11, 2005
6:39 pm
... Oops. Sorry. I guess I should have added the perl source code, and the fact that this was running on a G3 mac. My mistake. David Heayn *...
21366 Rohit Singh Gole
rohitgole2003 Send Email
Jul 11, 2005
7:49 pm
actually, first of all i want to go PDB website then after getting Protein Id i want to see it correspoding "scop" file then i have to extract that page so...
21367 Paul Archer
tigger@... Send Email
Jul 11, 2005
7:54 pm
As a suggestion, try reading "Perl for Bioinformatics"; -- although you may want to start with Learning Perl". While this is a "beginners&quot; mailing list, it's...
21368 Deanna Briggs
deanna_lib Send Email
Jul 11, 2005
8:38 pm
hello, I'm definitely new at this and I think this must be a quick solution in my regex, which I've pasted below. It works, except for the last 2 lines, where...
21369 bloodpet
egcalso Send Email
Jul 11, 2005
9:38 pm
Here's the regex for the "first two words." /^(\w+ ){2}/ So you probably want s/^(\w+ ){2}//; Take note tho that \w doesn't recognize punctuations part of a...
21370 a_z0_9_blah Send Email Jul 12, 2005
12:37 am
Hi Deanna Could you please provide some sample input data and what you want as output? It would be easier to see what you need to do. Chris...
Messages 21341 - 21370 of 27459   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