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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 26326 - 26363 of 26720   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
26326
My difficulty is this: In this code foreach my $coded (sort keys %main::codestructure) { foreach my $wording (sort $main::codestructure{@coded}) { print...
barjesse37
Offline Send Email
Aug 5, 2008
12:42 am
26327
... barjesse37> My difficulty is this: barjesse37> In this code barjesse37> foreach my $coded (sort keys %main::codestructure) { barjesse37> foreach my...
merlyn@...
merlynstoneh...
Offline Send Email
Aug 5, 2008
3:45 am
26328
The following does almost exactly what I want it to: socket(RSSH, PF_INET, SOCK_STREAM, getprotobyname('tcp')) or die "couldn't open a socket? $!\n"; my...
Brian
brianlamere
Offline Send Email
Aug 7, 2008
12:23 am
26329
HI All, I am using Net::Telnet. $ok = $t->cmd(String => $bldcmd); $bld_line = $t->getline; while($bld_line =~ /Build completed on|Build failed on/) { $bld_line...
Hashmat Khan
ashmathkhan
Offline Send Email
Aug 11, 2008
4:32 pm
26332
I want to convert my perl script to an executable format. If I have game.pl in Perl script. I can convert to game.exe. How can can I make game.exe to become an...
slick.user
Offline Send Email
Aug 12, 2008
11:44 pm
26333
From: "slick.user" <slick.user@...> ... Don't. This is not a Perl question, but anyway. What you need to do is to either put the game.exe into...
Jenda Krynicky
jendaperl
Offline Send Email
Aug 13, 2008
12:13 am
26340
Hi, I am new. After downloading ActivePerl from www.activestate.com, I start the OLE Browser and receive the following message: Internet Explorer could not...
yearofthepig03
Offline Send Email
Aug 18, 2008
7:35 pm
26341
I did get the browser to work after 'enabling' ActiveX Controls but what do you intend to do next? "yearofthepig03" <petebond1@...> Sent by:...
Hemanth Padmanabhan
hemanth.padmanabhan@...
Send Email
Aug 19, 2008
6:45 am
26342
... http://search.cpan.org/~tomc/Socket-1.5/Socket.pm ... You may have to use the Object Oriented approach. Consider this code: use strict; use warnings; use...
nvvikas
Offline Send Email
Aug 19, 2008
6:51 am
26343
I'm doing a Perl SSH script and when I try to excite a command in my remote server login bin directory it can't find it. Although it does work when I give it...
Dukelow, Don
dondukelow
Offline Send Email
Aug 19, 2008
5:07 pm
26344
my field is biotechnogy , but i wish to learn pearl programming. Don't know how begin that. From where i can get its software. Please tell the basic things to...
rdhanutha
Offline Send Email
Aug 19, 2008
7:39 pm
26345
... rdhanutha> my field is biotechnogy , but i wish to learn pearl rdhanutha> programming. Don't know how begin that. From where i can get its rdhanutha>...
merlyn@...
merlynstoneh...
Offline Send Email
Aug 19, 2008
10:10 pm
26346
Perl Cookbook -> collection of books about perl Download: http://rapidshare.com/files/138616161/perlcook.rar.html On Tue, 19 Aug 2008 19:39:38 -0000 ... --...
Leonardo
correo182@...
Send Email
Aug 19, 2008
11:53 pm
26347
... Leonardo> Perl Cookbook -> collection of books about perl Please don't support pirating of copyrighted material. Shame on you. -- Randal L. Schwartz -...
merlyn@...
merlynstoneh...
Offline Send Email
Aug 20, 2008
12:00 am
26348
The Perl CD Bookshelf -> collection of books about perl Download: http://rapidshare.com/files/138616161/perlcook.rar.html On Tue, 19 Aug 2008 19:39:38 -0000 ...
Leonardo
correo182@...
Send Email
Aug 20, 2008
12:05 am
26349
As the business war on the air is hotting up with so many low-budget airlines dominating the sky, the passengers can now enjoy the best deals. The webguide -...
nelson_miltson
Offline Send Email
Aug 20, 2008
3:21 am
26350
... Find a list for "pearl" or find the name of the language you wish to learn. What would you advise someone who said "I have three or four hours a day free...
C.Y./J.E. Cripps
cycmn@...
Send Email
Aug 20, 2008
5:49 am
26351
... Perl is perfect for manipulating data for BLAST and FASTA http://www.bioperl.org/wiki/Getting_Started -- MortenB...
Morten Bjørnsvik
morten_bjoer...
Offline Send Email
Aug 20, 2008
2:30 pm
26352
Touche', Mr. Cripps.  Well said.  I think you've struck the nail on the head, as it were. Mr. Schwartz (at first) just submitted just a web link, which is...
David Thomas
barjesse37
Offline Send Email
Aug 20, 2008
10:23 pm
26353
Hello, I am looking for a little help. I am trying to convert names into login ids. I want all lower case and i want to remove any hyphens, apostrophes and...
sengebr
Offline Send Email
Aug 21, 2008
5:35 pm
26354
tr/[A-Z]/[a-z]/;   # convert $_ to lowercase s/[^a-z]//g;       # delete all non-alphabetic characters (again in $_)   Hope this helps. -A. ... From:...
Anjum Parvez
mapsiddiqui
Offline Send Email
Aug 21, 2008
5:48 pm
26355
Yes, thank you! Any guess on how to change the "Van Wagner" into vwagner, removing the a and the n from the first word of the last name? This would also be...
sengebr
Offline Send Email
Aug 21, 2008
6:50 pm
26356
Uh, untested, but: my ($first,$last) = split /[^a-z]/, lc $string; my $username = substr($first, 0, 1) . $last; ... -- Brad Lhotsky...
Brad Lhotsky
brad@...
Send Email
Aug 21, 2008
8:33 pm
26357
Brad, Thank you for your help! This is a last name, that I want to change, so we would need to work the magic on a single variable. Any guesses? -Steven E. ...
sengebr
Offline Send Email
Aug 21, 2008
9:50 pm
26358
... Brad's solution is working on only one variable, $string. use strict; use warnings; my $string = 'Van Wagner'; my ($first,$last) = split /[^a-z]/, lc...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Aug 21, 2008
10:20 pm
26359
Charles, Yes, thank you for that clarification. I am fairly new at this Perl stuff. What I truely need is this: All login IDs to be lower case. Last names...
sengebr
Offline Send Email
Aug 21, 2008
11:47 pm
26360
... Okay, don't take this the wrong way, but why not say all this in the first message of this thread? ... # See perlop for q{} operator my $user_name =...
Charles K. Clarkson
charlesclarkson
Offline Send Email
Aug 22, 2008
10:43 am
26361
... Perl ... last ... z/; ... $last_name$class_year,"; ... What would you do if a student doesn't have a middle name (or doesn't provide one)? Chris...
a_z0_9_blah
Offline Send Email
Aug 22, 2008
8:19 pm
26362
To begin to develop our Central Authentication, we will define the basic module that will work. use CGI; Instanciando the CGI in $ my_cgi for example, can use...
giovanimarcondes
giovanimarco...
Offline Send Email
Aug 23, 2008
4:00 pm
26363
... giovanimarcondes> To begin to develop our Central Authentication, we will define the giovanimarcondes> basic module that will work. The hard part about...
merlyn@...
merlynstoneh...
Offline Send Email
Aug 24, 2008
11:44 am
Messages 26326 - 26363 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