Hi, I have this string:
Tue,Sep,21,15:48:1,CEST,2010
I would replace the "," with a space.
I have tried:
string=string.replace("/,/g"," ");
and the result is:
Tue,Sep,21,15:48:1,CEST,2010
I have tried:
string=string.replace(","," ");
and the result is:
Tue Sep,21,15:48:1,CEST,2010
How can I replace all the "," with " "?
Thanks.