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
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:
>
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
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
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
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
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