S 
		
								
				
				
			
		SMOlesen
Hi
I need to split a comma delimited text, however if the comma is between ' '
then no split should occur
ie:
Class.Value, 'true' , 'some text', 'false', 'text, text, text'
should split into:
Class.Value
'true'
'some text
'false', 'text, text, text'
what split expression should I use for that??
TIA
Søren
				
			I need to split a comma delimited text, however if the comma is between ' '
then no split should occur
ie:
Class.Value, 'true' , 'some text', 'false', 'text, text, text'
should split into:
Class.Value
'true'
'some text
'false', 'text, text, text'
what split expression should I use for that??
TIA
Søren
 
	 [^,]+|'[^']*')", and use the Matches method to get a collection of
[^,]+|'[^']*')", and use the Matches method to get a collection of