I am new to regex.
Need some help.
I want to have a regex that would give me the following o/p for given i/p in java.
Input string
1. AB,CD,EF,GH
2. AB,"CD,EF",GH
3. AB|CD|EF|GH
4. AB|EF"A" "|GH
Expected Output
Note : E.g For 1st string, I want AB CD EF GH to be 4 different array elements of the same array. Similarly for next i/ps
1. AB CD EF GH
2. AB "CD,EF" GH
3. AB CD EF GH
4. AB EF"A" " GH
Thanks.