Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perl-beginner · Perl Beginners Mailing List

The Yahoo! Groups Product Blog

Check it out!

Group Information

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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 27318 - 27348 of 27459   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
27318 Roger
rfbits Send Email
Apr 19, 2012
6:33 am
hmm....that&#39;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 Send Email
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 Send Email
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 Send Email
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 Send Email
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@... Send Email
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 Send Email
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 Send Email
Apr 22, 2012
12:27 pm
... Yes. It works. Thanks. Regards LIM...
27326 Lim
lim.weijer Send Email
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@... Send Email
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 Send Email
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...
27329 timothy adigun
eternity8008 Send Email
Apr 22, 2012
11:47 pm
... Ran> >>>>> "timothy" == timothy adigun <2teezperl@...> writes: Ran> timothy> m/.+?\((.+?)\)=(?:\s+)?\((.+?)dB,(.+?)\)/; Ran> timothy>...
27330 merlyn@...
merlynstoneh... Send Email
Apr 22, 2012
11:50 pm
... Ran> >>>>> "timothy" == timothy adigun <2teezperl@...> writes: Ran> timothy> timothy> m/.+?\((.+?)\)=(?:\s+)?\((.+?)dB,(.+?)\)/; Ran> timothy>...
27331 merlyn@...
merlynstoneh... Send Email
Apr 22, 2012
11:56 pm
... timothy> m/.+?\((.+?)\)=(?:\s+)?\((.+?)dB,(.+?)\)/; timothy> my $fvalanom = $1; timothy> my $fval = $2; Please...
27332 Roger
rfbits Send Email
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 Send Email
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... Send Email
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@... Send Email
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... Send Email
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@... Send Email
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... Send Email
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... Send Email
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 Send Email
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@... Send Email
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... Send Email
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 Send Email
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 ...
27345 hellotexi Send Email Jun 17, 2012
2:03 am
$string = [11, 22, 33, 44]; print "$$string[0]" . "\n"; print "@$string[0]" . "\n"; output: 11 11 question: why @$string[0] works?...
27346 hellotexi Send Email Jun 17, 2012
2:08 am
$str = [11, 22, 33, 44]; print "$$str[0]" . "\n"; print "@$str[0]" . "\n"; 11 11 @$str[0] works? why?...
27347 Shlomi Fish
shlomif2 Send Email
Jun 17, 2012
4:47 am
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@... Send Email
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...
Messages 27318 - 27348 of 27459   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