EDIT: Can anyone help me out with a regular expression for a string such as this?:
[Header 1], [Head,er 2], Header 3
so that I can split this into chunks like:
[Header 1]
[Head,er 2]
Header 3
I have gotten as far as this:
(?<=,|^).*?(?=,|$)
Which will give me:
[Header 1]
[Head
,er 2]
Header 3
Thanks!!