My difficulty is this: In this code foreach my $coded (sort keys %main::codestructure) { foreach my $wording (sort $main::codestructure{@coded}) { print...
... barjesse37> My difficulty is this: barjesse37> In this code barjesse37> foreach my $coded (sort keys %main::codestructure) { barjesse37> foreach my...
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...
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...
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...
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...
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@...
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...
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...
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> 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>...
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@...
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 -...
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@...
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 -...
... 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@...
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...
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...
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...
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...
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. ...
... 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, 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...
... 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 =...
... 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...
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> To begin to develop our Central Authentication, we will define the giovanimarcondes> basic module that will work. The hard part about...