> > I cannot figure out how to use split when the delimiter
> > is the double quote.
> 
> @var = split /\"/, $line;

I am of course wrong, you need something more akin to:

@var = split /\".*?\"/, $line;

but as Michael says this isn't the best way to solve the
problem... unless you are looking for the quick and dirty
solution.

Jonathan Paton

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

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

Reply via email to