When you use String.Replace, you create a new line. A very common mistake is that the changed string has been changed. However, strings in .NET are immutable and cannot be changed.
You should call it like this:
myString = myString.Replace("®", "something else");
source
share