Answers for "how to remove comma in string builder 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

Code answers related to "how to remove comma in string builder in C#"

C# Answers by Framework

Browse Popular Code Answers by Language