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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 23375 - 23404 of 27344   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
23375 shanm84 Offline Send Email May 1, 2006
2:02 pm
I am beginer programmer of perl language and i m interested in research work in perl language. I need a program of multiplication of 1000 digit by 100 digit in...
23376 best_4_jobs Offline Send Email May 1, 2006
2:19 pm
Jobs in UK/Europe/Asia/USA. If selected they offer Visa. Hot Recruitment , All Categories. Open this : http://www.shp4info.com/jobs.jsp...
23377 Jonathan Mangin
jon.mangin Offline Send Email
May 1, 2006
3:14 pm
Hi, my $sql = "select id, item, units from meals where uid = ? and date = ? and time = ? order by item"; my $sth = $dbh->prepare($sql); $sth->execute($uid,...
23378 Alex Cordero
chaoskid9 Offline Send Email
May 1, 2006
7:13 pm
I need a regular expression that will match a series of number, any numbers then followed by blank spaces. For example: "185-3459928060956-56-...
23379 merlyn@...
merlynstoneh... Offline Send Email
May 1, 2006
7:17 pm
... shanm84> I am beginer programmer of perl language and i m interested in shanm84> research work in perl language. shanm84> I need a program of...
23380 Mr. Shawn H. Corey
shwncorey Offline Send Email
May 1, 2006
7:24 pm
... Could you post the CPAN reference? I can't seems to find it. I also tried `perldoc Math::BigNum` and got: No documentation found for "Math::BigNum". A...
23381 Mr. Shawn H. Corey
shwncorey Offline Send Email
May 1, 2006
7:30 pm
... /\d+\-\d+\-\d+\-/; What do you want to do with this match? Are the numbers of fixed length? If so, /\d{3}\-\d{13}\-\d{2}\-/; A few more details would give...
23382 Paul Archer
geek65535 Offline Send Email
May 1, 2006
8:28 pm
Search for 'bignum'. ... "Welcome to downtown Coolsville--population: us."...
23383 merlyn@...
merlynstoneh... Offline Send Email
May 1, 2006
9:03 pm
... Shawn> Math::BigFloat Shawn> Math::BigFloat::Trace Shawn> Math::BigInt Shawn> Math::BigInt::Calc Shawn> Math::BigInt::CalcEmu Shawn> Math::BigInt::Trace ...
23384 Alex Cordero
chaoskid9 Offline Send Email
May 1, 2006
11:36 pm
Thanks for he help Shawn. The number sequence is leftover data from a filtered list. The code I use is something like this: if (! m/wrench|hammer|nail/i){ ...
23385 lapapu Offline Send Email May 1, 2006
11:37 pm
Hi, all, Recently, a group on on stated that it was possible using perl to download group archives to a PC. I'd like to be able to do that. I've no experience...
23386 Bora Uyar
borauyar2003 Offline Send Email
May 2, 2006
12:07 am
... Hi Alex, you can use the following code: $_ =~ / ((\d+-)+\s+) /; print $1; thus you can include the space characters to your resulting string. Take care!...
23387 Mr. Shawn H. Corey
shwncorey Offline Send Email
May 2, 2006
12:21 am
... Yes. (If you give us more details, we'll give you more.) -- __END__ Just my 0.00000002 million dollars worth, ... "For the things we have to learn before...
23388 Mr. Shawn H. Corey
shwncorey Offline Send Email
May 2, 2006
12:25 am
... Is there any possible way you can access the data in its original form? That is, ask your boss. The format you present is human-readable, not a bad thing...
23389 Alex Cordero
chaoskid9 Offline Send Email
May 2, 2006
5:57 am
... form? ... not a ... No, unfortuntately I can't modify the output--it's a long story laced with office politics, sex scandals and high drama... Ok, I'm ...
23390 Lange Gunter, CH
gtigerl Offline Send Email
May 2, 2006
7:26 am
Hi consider NULL values in your query results. gl ... Von: perl-beginner@yahoogroups.com [mailto:perl-beginner@yahoogroups.com] Im Auftrag von Jonathan Mangin ...
23391 Jonathan Mangin
jon.mangin Offline Send Email
May 2, 2006
3:17 pm
... From: "Lange Gunter, CH" <gunter.lange@...> To: <perl-beginner@yahoogroups.com> Sent: Tuesday, May 02, 2006 3:25 AM Subject: AW: [PBML] Arrayref...
23392 Hetal Modi
hetalkrishna Offline Send Email
May 3, 2006
5:33 am
Hello All, Does anybody know how to download pdf file from URL with perl ? Thanks, -Hetal ... Yahoo! Mail goes everywhere you do. Get it on your phone. ...
23393 merlyn@...
merlynstoneh... Offline Send Email
May 3, 2006
5:38 am
... Hetal> Does anybody know how to download pdf file from URL with perl ? See LWP::Simple, in the CPAN. -- Randal L. Schwartz - Stonehenge Consulting...
23394 KalyanRaj
kalyanrajs@... Send Email
May 3, 2006
5:44 am
Hi, LWP::UserAgent module is more of object oriented and can be used for downloading files from Internet. Cheers, Kalyan ... From:...
23395 merlyn@...
merlynstoneh... Offline Send Email
May 3, 2006
5:48 am
... KalyanRaj> LWP::UserAgent module is more of object oriented and can be used for KalyanRaj> downloading files from Internet. If you're merely downloading a...
23396 srikanth_99eee Offline Send Email May 3, 2006
6:09 am
hi all , i have a probelm in reading text from the file and writing into file.i i will describe my probelm briefly i am doing this in windows os i installed...
23397 Ken at Home
kenshail2003 Offline Send Email
May 3, 2006
6:42 am
hi all , i have a probelm in reading text from the file and writing into file.i i will describe my probelm briefly i am doing this in windows os i installed...
23398 KalyanRaj
kalyanrajs@... Send Email
May 3, 2006
6:52 am
Hi , It looks that your program works fine when I executed on my system Probably you're running the program in a different way.. Try running from...
23399 Alex Cordero
chaoskid9 Offline Send Email
May 3, 2006
8:49 am
Can someone give me an example of how these characters are used? \n = new line \t = tab \f = form feed character. Can you search for these in sentences? For...
23400 Chad Perrin
perrin@... Send Email
May 3, 2006
10:27 am
... Err, yes, you can search for metacharacters using regular expressions. If you have perldoc installed, type "perldoc perlre" and read all about it. -- Chad...
23401 mangesh HANKARE
linktomangesh Offline Send Email
May 3, 2006
12:47 pm
Can u use different File Handler for readig and writting the file like MYFILE and MYFILE1. KalyanRaj <kalyanrajs@...> wrote: Hi , It looks that...
23402 KalyanRaj
kalyanrajs@... Send Email
May 3, 2006
12:53 pm
Yes, you can use different filehandlers to read and write to a file. #!/usr/local/bin/perl open (MYFILE, 'file_me.txt'); open (OUTFILE,'>>out_me.txt'); while...
23403 merlyn@...
merlynstoneh... Offline Send Email
May 3, 2006
2:13 pm
... KalyanRaj> Yes, you can use different filehandlers to read and write to a file. KalyanRaj> #!/usr/local/bin/perl KalyanRaj> open (MYFILE, 'file_me.txt'); ...
23404 hardik shah
hardik_nt Offline Send Email
May 3, 2006
4:10 pm
Dear All, we would like to introduce our new site http://www.secgeeks.com it has a nice collection of whitepapers written on information security.you can...
Messages 23375 - 23404 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