> "Bob Showalter" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>
> > You should write it like:
> >
> >    split(/\|/, $line)
> >
> > or
> >
> >    split('\|', $line)
> >
> > this will work (but don't do it this way) see why?
> >
> >    split("\\|", $line)

I don't see why you shouldn't to do it any of these ways (though I agree the
first is most clear).

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