Please let me know how to remove comma in a string within double quotes
String temp = "test,test1,test2,test3", null, null, 12345
the required output should be the below
"test test1 test2 test3", null, null, 12345
1
Please let me know how to remove comma in a string within double quotes
String temp = "test,test1,test2,test3", null, null, 12345
the required output should be the below
"test test1 test2 test3", null, null, 12345
1