How do i convert an accented string to a normal string.
Example:
string name = "Chloé";
string newName = "Chloé";
thks.
How do i convert an accented string to a normal string.
Example:
string name = "Chloé";
string newName = "Chloé";
thks.
You can use WebUtility.HtmlDecode
to decode the & escape character :
WebUtility.HtmlDecode("Chloé") // will produce : Chloé