I'm trying to create this structure on the fly and the structure below
is just an example. I want the return value to initialize another
complex hash which...
22925
Stan Horwitz
srhorwitz
Mar 1, 2006 1:37 pm
... Thanks. For some reason, when I leave off the third argument, I get "HASH(0xa8220)" as a result. I also get the same thing if I use "0" as the third ...
22926
jabir ahmed
jabirahmed
Mar 2, 2006 7:03 am
Hello I have seen a lot of code on the net which has very very good internal documentation. Could anyone suggest a tool to do such documentation.. Regds Jab ...
22927
Damien Carbery
daymobrew
Mar 2, 2006 7:57 am
... I helped Shawn off-list and got a solution. #!/usr/bin/perl -w use Time::Interval; use warnings; use strict; my $diff_time_seconds = getInterval('02/26/06...
22928
acummingsus
Mar 2, 2006 8:31 am
... wrote: [ a solution arrives ] Super! (I was a bit confused as I didn't see any code in the post of Shawn's that I received). ... -w and use warnings ? [ ....
22930
merlyn@...
merlynstoneh...
Mar 2, 2006 1:50 pm
... jabir> I have seen a lot of code on the net which has very very good internal jabir> documentation. jabir> Could anyone suggest a tool to do such...
22931
Eduardo Adrian Perez
eapz
Mar 2, 2006 2:30 pm
Hi all. I have just joined the group, my name is Eduardo Perez from Buenos Aires, Argentina. Have a good day everybody ! Now, I have a question. I am beginning...
22932
merlyn@...
merlynstoneh...
Mar 2, 2006 2:52 pm
... Eduardo> But, how is this implemented in perl? What do you mean, "implemented"? How does the C code that makes up /usr/bin/perl do it? That's a *long*...
22933
Eduardo Adrian Perez
eapz
Mar 2, 2006 4:06 pm
Hi Randal, thanks for your answer. Sorry, but english language is not my strength. reading perldoc perlsub give me the answer: ..... The return value of a...
22934
b2174ml
Mar 3, 2006 2:36 am
Can someone tell me how to parse this regular expression? <CallReceivedEvent callUuid="92b2be68-94af-11da-c59b-00e08101a72a" callerId="6304751054"...
22935
merlyn@...
merlynstoneh...
Mar 3, 2006 2:48 am
... b2174ml> Can someone tell me how to parse this regular expression? That's not a regular expression. That's a piece of XML. b2174ml> <CallReceivedEvent...
22936
kiperez
conveyance
Mar 3, 2006 3:34 am
I know this is a simple matter but it eludes me at the moment. But... How do I call one PL file from within another script? Thanks....
Hi , I beleive what u want to know is simply how to run some .pl file from some other .pl file. The simple command is: system "./xyz.pl"; just make sure that...
22940
Victor Bouffier
perl_jam03
Mar 3, 2006 6:47 am
Right. XML::Simple would do, I guess? Now, XML::Simple would parse all internals between the opening and closing tags, but you still need the /^<(\w+)/ regex...
22941
merlyn@...
merlynstoneh...
Mar 3, 2006 1:13 pm
... kiperez> I know this is a simple matter but it eludes me at the moment. kiperez> But... kiperez> How do I call one PL file from within another script? If I...
22942
sachin gupta
gupta_sachin17
Mar 3, 2006 2:45 pm
And also if you are not capturing the return value then do not use backticks as perl does extra processing for it. Also take are a few security issues with it ...
22943
elizabethgreen2
Mar 3, 2006 9:11 pm
Hello, I'm a recruiter searching for software developers with experience in Perl. Location of position is Sommerset, NJ. This position is full- time...
22944
merlyn@...
merlynstoneh...
Mar 3, 2006 10:55 pm
... elizabethgreen2> I'm a recruiter searching for software developers with elizabethgreen2> experience in Perl. Location of position is Sommerset, NJ. ...
22945
java jsp
javjsp
Mar 4, 2006 5:36 am
you can try in www.jobsahead.com and www.naukri.com. There you can find lot of perl developer resumes. otherwise post ur job to that site automatically you'll...
22946
Manolo Marzan
vulpecula0312
Mar 4, 2006 6:16 am
Hi, I've been using TCL/TK for more than 6 years and it is more like Perl scripting. Best regards, ... ...
22947
jabir ahmed
jabirahmed
Mar 6, 2006 6:36 am
Hello Can anyone help me with this The user input could be /home/user/file.txt $HOME/file.txt ~/file.txt $SOMELOCATION/a.txt $APPPATH/a.conf. how could i...
22948
RAJESH PETHE
rpethe@...
Mar 6, 2006 6:45 am
If the user is giving inputs to the shell then you don't need to do
anything. If it's giving inputs to perl then you need to access the %ENV
hash that stores...
22949
jabir ahmed
jabirahmed
Mar 6, 2006 6:51 am
the problem is i am not sure which env variable he would use! jab ... -- To try is to risk failure, but risk must be taken, Because the greatest Hazard in life...
22950
Thiago Nacimento Rodr...
nascimentoth...
Mar 6, 2006 7:28 pm
Hi folks, I want to generate a HTML code using the package CGI.pm or HTML::EasyTags. But, my problem is following: I need to create a table whose rows are...
22951
merlyn@...
merlynstoneh...
Mar 6, 2006 7:37 pm
... Thiago> I want to generate a HTML code using the package Thiago> CGI.pm or HTML::EasyTags. Thiago> But, my problem is following: I need to create a table ...
22952
Damien Carbery
daymobrew
Mar 6, 2006 7:45 pm
... The user is not using the shell, but providing the above examples while the perl script is running. I spoke with jab via IM and the solution was simply to...
22953
merlyn@...
merlynstoneh...
Mar 6, 2006 8:19 pm
... Damien> The user is not using the shell, but providing the above examples Damien> while the perl script is running. Damien> I spoke with jab via IM and the...
22954
Victor Bouffier
perl_jam03
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...