+ 1
How do I remove all the special characters from a particular string ?
I'm trying to figure out how to remove special characters from a string can anyone help using c#.
3 ответов
+ 2
I think you want to solve a code coach. This should help:
https://www.sololearn.com/Discuss/2252852/why-my-code-is-not-passing-running-test-3-5
+ 1
Thank you for help ceeplusplus, but I'm using c# not python.
+ 1
Read the string through a loop, if current one is, letter or number or space then store or print that, else ingore that..
Or in other way, if special char, do nothing else copy..
Or else use a regex which will replace with nothing "", or delete if it is not letter, or number or space...