hmm....that39;s weird. I see the attachment in the sent mail. Anyhow I'm attaching the file again. Thanks, Roger ________________________________ From: timothy...
27319
Charles K. Clarkson
charlesclarkson
Apr 19, 2012 3:57 pm
... [...] ... It looks like your attachment is being stripped. Try using Pastebin (http://pastebin.com/) or a similar service to share large blocks of code....
27320
Jeremy Naylor
e_livingnz
Apr 20, 2012 2:09 am
... Hey Roger and all, Charles is right - attachments are stripped from e-mails before they're sent to the e-mail list. Hope this helps. Cheers, Jeremy Naylor...
27321
Lim
lim.weijer
Apr 21, 2012 10:42 am
Hi all, Is me again. Can anyone help me to solve a simple question below I still can not do it correctly. for this (4.94588dB,-90.8129? I wan to save the...
27322
David Precious
bigpresh
Apr 21, 2012 10:51 am
On Sat, 21 Apr 2012 10:09:33 -0000 ... I think I recall you mentioning this before, but not giving much detail. This should work: /,(.+)\?/ DB<1> x...
27323
Joe Pepersack
joe@...
Apr 21, 2012 5:56 pm
What database are you running? Stored procedures, and the methods for extending them with non-SQL languages, are all platform specific. Performance may be a...
27324
Lim
lim.weijer
Apr 22, 2012 12:27 pm
... Here I got a big problem regarding to this.I found that my searching will not stop if it does not match any word in the file or text.I attach my example at...
27325
Lim
lim.weijer
Apr 22, 2012 12:27 pm
... Yes. It works. Thanks. Regards LIM...
27326
Lim
lim.weijer
Apr 22, 2012 12:28 pm
... Hi, I got a question. If the word I wan to search is not find in a text or sentense. I found that the search will go on without stopping. Is there any idea...
27327
Brian F. Yulga
byulga@...
Apr 22, 2012 3:43 pm
... Stop there. $go is unnecessary and is tripping you up. Start those lines over with: open ( my $logfile, '<', $funcfile ) or die "Can't open source file ...
27328
timothy adigun
eternity8008
Apr 22, 2012 9:53 pm
... Lim> --- In perl-beginner@yahoogroups.com, "Lim" <lim.weijer@...> wrote: Lim> > Lim> > Hi all, Lim> > Lim> > Is me again. Lim> > Can...
... timothy> m/.+?\((.+?)\)=(?:\s+)?\((.+?)dB,(.+?)\)/; timothy> my $fvalanom = $1; timothy> my $fval = $2; Please...
27332
Roger
rfbits
Apr 23, 2012 3:28 am
Here's the code and output: ======> test.t #!/usr/bin/perl use strict; use warnings; require "/home/mydir/perl5/lib/perl5/TAP/Harness.pm"; require...
27333
Roger
rfbits
Apr 23, 2012 3:28 am
Resending the message..... ________________________________ From: Roger <rfbits@...> To: "perl-beginner@yahoogroups.com" <perl-beginner@yahoogroups.com> ...
27334
Tariq Hasan
taz.hasan...
May 10, 2012 11:50 am
Hi All Any idea where I can download the perl module date::manip 5.8.8, and any associated install/compile instructions for HP-UX 11.31? Thanks Tariq [Non-text...
27335
Shawn H Corey
shawnhcorey@...
May 10, 2012 12:13 pm
... Welcome to the group. Try: $ sudo cpan Date::Manip -- Just my 0.00000002 million dollars worth, Shawn Programming is as much about organization and...
27336
Tariq Hasan
taz.hasan...
May 10, 2012 1:13 pm
Thanks Shawn I have got this far: Sorry, we have to rerun the configuration dialog for CPAN.pm due to some missing parameters... The following questions are...
27337
Shawn H Corey
shawnhcorey@...
May 10, 2012 1:30 pm
... Normally, I choose the default values. The configure adapts itself to your OS, so they should work. For more information, see `perldoc cpan`. -- Just my...
27338
Tariq Hasan
taz.hasan...
May 10, 2012 1:34 pm
SHawn Ive got this far: If you're accessing the net via proxies, you can specify them in the CPAN configuration or via environment variables. The variable in ...
27339
merlyn@...
merlynstoneh...
May 10, 2012 4:24 pm
... Tariq> Could not fetch MIRRORED.BY If you can't fetch that, you're likely not seeing the internet from your box. Fix that first. If you have to use a...
27340
Ken Shail
shailken
May 16, 2012 1:43 am
In Graham Barr's Net::SMTP for example he uses the following syntax: ${*$obj}{'net_smtp_host'} = $host; in his sub new and other places. Could someone please...
27341
Shawn H Corey
shawnhcorey@...
May 16, 2012 12:49 pm
... This is unusual syntax. The following is equivalent to the above: ${*{$obj}}{39;net_smtp_host'} = $host; But I have no idea what it does. :( -- Just my...
27342
merlyn@...
merlynstoneh...
May 16, 2012 2:36 pm
... Ken> In Graham Barr's Net::SMTP for example he uses the following syntax: Ken> ${*$obj}{'net_smtp_host'} = $host; Ken> in his sub new and other places. ...
27343
andy_bach@...
afbach1
May 16, 2012 3:27 pm
... ${*{$obj}}{39;net_smtp_host'} = $host; My guess is $obj is the 'name' the *{$obj} gets you to the typeglob (all the Perl variable types using the word in ...
Hi hellotexi, On Sun, 17 Jun 2012 01:28:06 -0000 ... Well, first of all, note that you should not call a scalar variable that holds an array reference "str"...
27348
Shawn H Corey
shawnhcorey@...
Jun 17, 2012 11:28 am
... Because it's a slice; see http://perldoc.perl.org/perldata.html#Slices Also, you should always `use strict;` and `use warnings`: #!/usr/bin/env perl use...