Eliyah Kilada <mailto:[EMAIL PROTECTED]> wrote:
: Hi,
: let
: @a = 111011010;
: $a[0]=1;
: $a[1]=1;

    Use split to do that automatically.

my @a = split //, 111011010;


: .....
: I need
: @[EMAIL PROTECTED]@a[4..0];

    That doesn't make sense. Concatenation (the '.') works on
scalars, not arrays. Tell us what you want to have happen.

HTH,

Charles K. Clarkson
-- 
Mobile Homes Specialist
254 968-8328


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