Answers for "trim number and hyphens c#"

C#
0

c# replace dash in string

string result = Regex.Replace(inputString, @"[^0-9]", "");
Posted by: Guest on November-10-2020

C# Answers by Framework

Browse Popular Code Answers by Language