I have the following array:
[["12","21","31","41"],["empty","22","32","42"],["13","23","33","43"]]
After my regex of:
picset.replaceAll("\\[\\[\"|\"\\]\\]|", "");
Output:
"12","21","31","41"],["empty","22","32","42"],["13","23","33","43"
How do I remove the remaining brackets? I should also note I am looping through several arrays with different sizes its not just this specific array.