I have variable like this:
val data = "'1','a','13','100','b'"
and I want to replace the variable became to
val data = "1,'a',13,100,'b'"
If variable has a integer character, its will be remove the quotes (''). How can I do it?
I have variable like this:
val data = "'1','a','13','100','b'"
and I want to replace the variable became to
val data = "1,'a',13,100,'b'"
If variable has a integer character, its will be remove the quotes (''). How can I do it?