What is the C#
method to split
a string with the delimiter as a ','
being careful not to split when the comma is inside a block of text ""
.
So for example, if the string contains
""AAC","AAC Holdings, Inc.""
the split should return (the []
are there to pretend it is an array element of the string[]
returned by split
)
[AAC] [AAC Holdings, Inc.]
not
[AAC] [AAC Holdings] [Inc.]