I have a string with multiple dashes, but it contains long dashes.
What method can I use to normalize dashes?
text = Regex.Replace(text, @"(\u2012|\u2013|\u2014|\u2015)", "-");
The expected output is something like 11-1111-11/11
The actual is almost the same, but some of the dashes are long ones. (I can't put in that dash because the stackoverflow does not recognize it.)