I need to separate the following string by comma and get the chunks down below. What's the most elegant solution in C#? String.Split() detects also internal commas, of course.
"'_82X5_00_11 (2,RAL 7035)', '_82X5_00_11 (2,RAL 7035)', #349, #1 "
The result should be:
'_82X5_00_11 (2,RAL 7035)'
'_82X5_00_11 (2,RAL 7035)'
#349
#1
Thanks.