Change comma to tilda (or ?) on conversion in toString
I noticed that toString uses a comma as field delimiter. Can I change the comma to some other char or maybe 2 chars?
Reason, I have a text field that could have several comma's, so the toString stops parsing a text field at the first comma in the text.
The current code is:
var myString = gridData[index].toString()
...
var myArray = myString.split(",")
If toString would delimit with something like ~ I could use:
var myArray = myString.split(",")
Or, ... is there a better way to retrieve each col of gridData[index]
Thanks
Reason, I have a text field that could have several comma's, so the toString stops parsing a text field at the first comma in the text.
The current code is:
var myString = gridData[index].toString()
...
var myArray = myString.split(",")
If toString would delimit with something like ~ I could use:
var myArray = myString.split(",")
Or, ... is there a better way to retrieve each col of gridData[index]
Thanks
Norm
February 25,