in reply to Re: Re: What is the fastest way to extract data from a delimited string?
in thread What is the fastest way to extract data from a delimited string?

You're out of luck then because split will *always* be much faster than any non-trivial regex. For large files, split is the only way to go. Your instincts are wrong, completely wrong.

--
Regards,
Helgi Briem
helgi AT decode DOT is

  • Comment on Re: Re: Re: What is the fastest way to extract data from a delimited string?