in reply to string manupulation

I want to split the string

There's your answer. :-) split does the job, like this:

my $local = 'one:two:three'; my @temp = split /:/, $local;

-- Mike

--
just,my${.02}

Replies are listed 'Best First'.
Re: Re: string manupulation
by venki (Acolyte) on Sep 05, 2002 at 17:46 UTC
    Thank you Mike