I need a regex to split a sting by comma but also remove the double quotes of the text field delimiters.
Sample string:
"Test1", "Test2", 3, 4, "Test5"
Required List
- Test1
- Test2
- 3
- 4
- Test5
Thanks JP
I need a regex to split a sting by comma but also remove the double quotes of the text field delimiters.
Sample string:
"Test1", "Test2", 3, 4, "Test5"
Required List
- Test1
- Test2
- 3
- 4
- Test5
Thanks JP