I'm developing a C# based application and want to use "," (Comma) delimiter to split strings. The problem arrives when the comma is part of my string and not a delimiter (like we have in addresses for example). Example:
Input: "A,B,Venus, New York 10001"
Actual output: "A", "B", "Venus", "New York"
Required output: "A", "B", "Venus, New York"
What is the best practice for this kind of issue? Thanks.