how to remove or replace comma from string :
i will get value like: ",good";
i want like : "good";
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ravi PatelPosted May 27, 2016, 2:29 AM
string newstr= s.Replace(' ,' , ' ');
Avikshith AradhyaPosted May 27, 2016, 2:05 AM