Re: Gigantic file size processing error

2014-01-03 Thread kurtz le pirate
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

Re: begining

2013-05-22 Thread kurtz le pirate
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

Re: 2 dimensions array

2011-12-17 Thread kurtz le pirate
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

2 dimensions array

2011-12-11 Thread kurtz le pirate
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

Re: help with array elements

2011-03-12 Thread kurtz le pirate
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...