I have a string of telephone number. The format I wanted to use is like this
(044) 463-2256
How can I format my string like this?
string tel = "0444632256";
var match = Regex.Replace(tel, @"");
I tried using Regex.Replace but I don't know what the format that I will put in.