Answers for "how to get rid of the comma in c#"

C#
1

remove comma from string c#

string data="DIKhan,Pakistan";
//Removing All Comma's from String
string address=data.Replace(","," ");
// OutPut will be: DIKhan Pakistan
Posted by: Guest on December-16-2020
0

c# find comma in text and remove

a = a.Replace("," , "");
Posted by: Guest on May-11-2020

Code answers related to "how to get rid of the comma in c#"

C# Answers by Framework

Browse Popular Code Answers by Language