1

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

JPScerri
  • 115
  • 1
  • 1
  • 8
  • Hi Kobi. The answer you quoted does not split by a comma and also remove double quotes from the resultant list! JP – JPScerri Dec 04 '14 at 10:59
  • 1
    Your "required list" has no double quotes, either (and I'd argue you don't actually need double quotes anyway), but you should look at the second answer in the other thread. *That's* the one you really want to use. – Tomalak Dec 04 '14 at 11:20
  • Thanks, worked perfectly! – JPScerri Dec 04 '14 at 12:47

0 Answers0