perl script to log on to website

2009-01-29 Thread ben perl
Is there a way i can use perl to log on to my cell phone provider website and download the minutes i have used and email me if i am going over certain minutes? Thanks, -Ben

RE: Query in Perl Programming

2009-01-29 Thread S, Rajini (STSD)
Thanks Rob, the solution which you suggested works fine. -Rajini >-Original Message- >From: Rob Dixon [mailto:rob.di...@gmx.com] >Sent: Wednesday, January 28, 2009 5:45 PM >To: Perl Beginners >Cc: S, Rajini (STSD) >Subject: Re: Query in Perl Programming > >S, Rajini (STSD) wrote: >

RE: Is there a way to un-install modules?

2009-01-29 Thread Bob McConnell
From: sanket vaidya > There is no tool available to uninstall modules. However what you can do > manually is this. > > I use Active Perl 5.10 on Windows. > > 1. Open the .packlist file in Perl/lib directory in any text editor. This > contains the path of all modules installed on your system (alon

Re: how to copy elements into the next array

2009-01-29 Thread Mr. Shawn H. Corey
On Thu, 2009-01-29 at 14:39 +0800, itshardtogetone wrote: > Hi, > How do I copy the first 10 elements of @a into @b? > > The method that I use is long :- > my @a = 1..20; > my @b = (); > > my $ctr = 0; > foreach (@a){ > if ($ctr < 10){ > push @b,$_; > } > $ctr ++; > } See

RE: Question related Join function

2009-01-29 Thread sanket vaidya
Pl. see my soln in the original mail -Original Message- From: sanket vaidya [mailto:sanket.vai...@patni.com] Sent: Thursday, January 29, 2009 3:35 PM To: 'Anirban Adhikary' Cc: 'beginners@perl.org' Subject: RE: Question related Join function Hi Anirban, Join works this way only. Ho

RE: Question related Join function

2009-01-29 Thread sanket vaidya
Hi Anirban, Join works this way only. However u can accomplish your task as follows: -Original Message- From: Anirban Adhikary [mailto:anirban.adhik...@gmail.com] Sent: Thursday, January 29, 2009 3:08 PM To: beginners@perl.org Subject: Question related Join function Dear List >>I ha

Question related Join function

2009-01-29 Thread Anirban Adhikary
Dear List I have doubt about the exact working of join function. I have written the following small code use strict; use warnings; my @array= join ("-k", @ARGV ); print "@array\n"; I am running the program as follows which producing the following output [anadhik...@strawberry test_prog]$ perl te