Answers for "c# replace multiple substrings in string"

C#
0

replace multiple characters in string c#

string name="$1,300";
Console.Write((name.Replace("$","").Replace(",",""))); // output->  1300
Posted by: Guest on February-23-2021

Code answers related to "c# replace multiple substrings in string"

C# Answers by Framework

Browse Popular Code Answers by Language