I want to replace hyphen with space in asp.net c#. Here I
used replace method from c# library System.Text.RegularExpressions.
Example:
string term = HtmlUtility.ReplaceHyphen(term);
public static string ReplaceHyphen(string text)
{
string my_String = Regex.Replace(text, "-", " ");
return my_String;
}