Re: Regexp Guru Needed



On Oct 30, 2005, at 3:43 AM, Warren Seltzer wrote:

If you google for "CSV regexp" you get a lot of hits. This one looks promising:

http://www.codeguru.com/columns/DotNetTips/article.php/c8153/

Thanks.

Just FYI, the main expression we are working with is:

/\G(?:^|,)(?:"((?>[^"]*)(?>""[^"]*)*)"|([^",]*))/

From Mastering Regular Expressions (2nd Edition).

James Edward Gray II


.