I would like to replace the french letter Æ with the asci corresponding AE, but the method does not accept this. Is there another way?
How about:
myString.Replace("Æ", "AE");
Instead of string.Replace('Æ','AE'), use string.Replace("Æ", "AE").
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With