John W. Krahn wrote:
> "Ling F. Zhang" wrote:
> >
> > say I have a string scalar $s
> > I would like to convert it @s in such a way that qw
> > would do it...
> > i.e.
> > if $s = "rabbit hole\t goes\tall the way\n"
> > then
> > @s = ("rabbit","hole","goes","all","the","way\n")
>
> @s = split ' ', $s;

  @s = split for $s

:)

Rob




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to