Skip to search.
perl-beginner · Perl Beginners Mailing List

Group Information

  • Members: 2100
  • Category: Perl
  • Founded: Aug 2, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 16373 - 16402 of 27344   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16373 Dustin Smith AKA GIDu...
gidustin Offline Send Email
Sep 1, 2003
7:28 am
I have a string, a large string, and I want to put it in an array 2 chars at a time, so "AABBGGHHSS...." would be transefered into like @Array= ...
16374 Gordon Stewart
gordonisnz Offline Send Email
Sep 1, 2003
7:38 am
... I guess my ISP / Host is having cron-job problems (the website says that cron-jobs are updated (to the main job list i guess) every hour..) I came online a...
16375 Jeff 'japhy' Pinyan
evilffej Offline Send Email
Sep 1, 2003
7:45 am
... split() is the wrong tool for the job. Use this instead: my @squares = $line =~ /.{2}/g; -- Jeff "japhy" Pinyan japhy@......
16376 Damien Carbery
daymobrew Offline Send Email
Sep 1, 2003
9:45 am
... ISP/host ... cron job ... into the ... But its ... I still ... I think Jenda's response is probably spot on. Change: use CGI 'param'; use CGI...
16377 Andi Permadi
andi@... Send Email
Sep 1, 2003
9:59 am
Hi All, How to create Perl database link to MS-SQL 2000 Server ? Thankyou !!!...
16378 Damien Carbery
daymobrew Offline Send Email
Sep 1, 2003
12:07 pm
... I really shouldn't respond to this because if you did a bit of looking around you'd find the answer. Maybe: DBIx::MSSQLReporter You can get it from: ...
16379 Jonathan Hipkiss
jhipkiss2003 Offline Send Email
Sep 1, 2003
1:50 pm
Hi, I'm getting this error: Can't load 'C:/perl/Perl/site/lib/auto/XML/Parser/Expat/Expat.dll' for module XML::Parser::Expat: load_file:One of the library...
16380 Paul Archer
tigger@... Send Email
Sep 1, 2003
2:33 pm
... To expand on this slightly, the *reason* that split is the wrong tool for the job is that the pattern you use with split is the delimiter, and the ...
16381 Damien Carbery
daymobrew Offline Send Email
Sep 1, 2003
3:10 pm
... 2 chars ... tool for ... characters ... And if you retain the delimiters with: @squares=split(/(..)/, $line); # Note brackets. you will get: 'AA', '',...
16382 Jonathan Hipkiss
jhipkiss2003 Offline Send Email
Sep 1, 2003
3:16 pm
Can anyone explain in "English" what the difference is between these three? Cheers Jonathan...
16383 Paul Archer
tigger@... Send Email
Sep 1, 2003
3:28 pm
... (Short answer on 'local', BTW, is it predates 'my', and isn't used much anymore.) From the beginners@... list: From Bob_Showalter@... Mon...
16384 J.E. Cripps
cycmn@... Send Email
Sep 1, 2003
3:33 pm
... Perl variables (be they $scalar, @array, %hash) may be 1. "global" or "package" variables 2. "lexical" or scoped Global variables are the default. They can...
16385 J.E. Cripps
cycmn@... Send Email
Sep 1, 2003
4:00 pm
... That's right. The "my" function wasn't around in Perl 4, "local" was....
16386 J.E. Cripps
cycmn@... Send Email
Sep 1, 2003
4:16 pm
... More accurately, from perldoc perlsub: use strict 'vars'; then any variable reference from there to the end of the enclosing block must EITHER refer to a...
16387 Van Andel, Robbert
RVanAndel@... Send Email
Sep 1, 2003
5:35 pm
I received a perl file to troubleshoot and am perplexed by the following piece of code my $sth=$dbh->prepare("select code,qty from custcode where account=?"); ...
16388 Jenda Krynicky
jendaperl Offline Send Email
Sep 1, 2003
5:46 pm
From: "Van Andel, Robbert" <RVanAndel@...> ... It denotes the place where will be the parameter passed to $sth->execute(...) inserted. It's called...
16389 Paul Archer
tigger@... Send Email
Sep 1, 2003
7:45 pm
... Yuppers. One critical difference between 'local' and 'my' (and a good reason to (usually) avoid 'local') is that a 'local' variable in a subroutine will be...
16390 Dustin Smith AKA GIDu...
gidustin Offline Send Email
Sep 1, 2003
8:27 pm
Thank you to all who replied. Worked like a charm GIDustin ... -- My Home Page: http://www.gidustin.net Alternate: http://www.civ3files.com -- When NASA...
16391 Vema Venkata
vemavenkata Offline Send Email
Sep 2, 2003
7:10 am
I have a following script to print the process id to a log file but in the log file the poroccess id seems to be different can any one help/sugges ...
16392 Janarthanan, Prassana
Prasanna-Janarthanan@... Send Email
Sep 2, 2003
11:24 am
Hi all, I have a good Q on SIG. I want to capture all the Signals and call my own function which would log with a message in to a file. I would do something...
16393 Janarthanan, Prassana
Prasanna-Janarthanan@... Send Email
Sep 2, 2003
11:32 am
Sorry I din give my piece of code.. For capturing INT Cnt-c key sequnce. sub INT_handler { # close all files. # send error message to log file. exit(0); } ...
16394 Jonathan Hipkiss
jhipkiss2003 Offline Send Email
Sep 2, 2003
12:15 pm
Thanks to all who replied to this, much appreciated. Jonathan ... these...
16395 Vema Venkata
vemavenkata Offline Send Email
Sep 2, 2003
12:19 pm
I have a following script to print the process id to a log file but in the log file the poroccess id seems to be different can any one help/sugges ...
16396 Damien Carbery
daymobrew Offline Send Email
Sep 2, 2003
12:37 pm
... ">>/proj/ahd02/CAisd/site/mods/scripts/log/init/ahdxapi.init.log")||die "OS Error was $! \n"; ... Woah, be patient. I think the majority of members of this...
16397 techybill Offline Send Email Sep 2, 2003
1:46 pm
Hey all Trying to modify a html file with a while statement and can't see to get it to work just right. Here's what I'm trying to do $change .=...
16398 matt_johnsson Offline Send Email Sep 2, 2003
2:24 pm
All, I'm currently using a composite key hash to gather counts of certain combinations of data. Bogus sample data: BOB,M,C TED,T,D BOB,M,C TED,D,D BOB,M,C so I...
16399 Damien Carbery
daymobrew Offline Send Email
Sep 2, 2003
3:26 pm
... Could you store stuff as: $myhash{"$key1,$key2,$key3"} i.e. put the key in a string. Then you can split the key when printing it out....
16400 Jenda Krynicky
jendaperl Offline Send Email
Sep 2, 2003
3:48 pm
From: "matt_johnsson" <matt_johnsson@...> ... foreach my $item (keys %myhash) { my @subkeys = split $;, $item; print "$subkeys[0], $subkeys[1],...
16401 Joe Catanzaro
joecatanzaro Offline Send Email
Sep 2, 2003
5:39 pm
I'm attempting to use Perl to open and work with Oracle SQL Plus. My problem is that the SQL Plus password has a special character in it and needs to be...
16402 david_p_li Offline Send Email Sep 2, 2003
7:03 pm
HI, I have a file like 1 2 3 4 567 How to use regular expression change to 1 2 3 4 567...
Messages 16373 - 16402 of 27344   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