>
>while(<FH>)
>{
>
>push  @arr , split /\t/ ;
>
>}
>
>

Hello,
Here you don't create a 2d array.Maybe you want this:

while(<FH>) {
    push @arry,[split/\t/];
}

Then each element of @arry is a anonymous array.You can access the anonymous 
array's elements as:

print $arry[0]->[0];

Hope this helps.

--
Jeff Pang
NetEase AntiSpam Team
http://corp.netease.com

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to