I need your help parsing a string that contains an array inside to string array, is it posible? Currently I'm using split to do it but I think that is not the correct way..
Here an example of what my string contains:
["SR RODRIGUEZ SE LO LLEVA ,,, PIL 4_45 ","COMENTARIOS"]
I hope you can help me guys, I've been stuck with this problem for an entire day..
String.split()is actually probably the right way to do it. If you need more help, please show some examples of inputs and expected outputs.