Why I can't replace ARMENIAN EMPHASIS MARK with an empty string?
Replace("՛", String.Empty)
Where ՛ is unocode char U+055B http://unicode.org/cldr/utility/character.jsp?a=055b
Why I can't replace ARMENIAN EMPHASIS MARK with an empty string?
Replace("՛", String.Empty)
Where ՛ is unocode char U+055B http://unicode.org/cldr/utility/character.jsp?a=055b
Its method with return.
Assign result.
var names = new List<String>
{
"Ana՛",
"Felipe՛",
"Emillia՛"
};
foreach (var name in names)
{
var newName = name.Replace("՛",string.Empty);
Console.WriteLine($"Hello {newName}");
}