In article
<1388676082.98276.yahoomail...@web193403.mail.sg3.yahoo.com>,
mani_nm...@yahoo.com (mani kandan) wrote:
> Hi,
We have file size of huge size 500MB, Need to Manipulate the file, some
> replacement and then write the file, I have used File::slurp and works for
> file size of 300MB (T
In article
,
rahim.g.fa...@gmail.com (Rahim Fakir) wrote:
> Can someone tell me or give a adress to programs like hello world or
> similar, for practice.
> Iam beging practice programming, and bought a book of perl, but i need
> program to practice can someone give me a hand.
> Best Regards
> Ra
In article <4ee54abf.6080...@gmail.com>,
shawnhco...@gmail.com (Shawn H Corey) wrote:
> Try:
>
> push @Cylinders, [ $1, $2 ];
>
> This will put the two captured variables in an anonymous array and push
> it onto @Cylinders.
so simple !!
thanks :)
--
klp
--
To unsubscribe, e-mail: beginn
Hello,
I want to have a two dim array. I build it like this:
my @Cylinders;
/.*(<.*>),(<.*>).*/;
push @{$Cylinders[0]}, $1;
push @{$Cylinders[1]}, $2;
Seems to work but a get an array with '2' lines and 'n' columns
instead of 'n' lines with '2' columns'.
display array with 'pri
In article
,
ashwint...@gmail.com (ashwin ts) wrote:
> Hi,
>
> I am a newbie to perl.
> I have an array which has few elements like '1,2,3,4,2,3,1,2,1,1,1,4,6,7'
> i need to know how many times each element has occurred in the same array.
> for example 1-5 times
> 2-3 times...