0
Is there a way to switch and/or erase certain characters from string?
I know that it's possible with arrays, but I don't know how to do it with strings.
2 ответов
+ 17
There are many methods you could use, like .replace()
+ 3
... and remember than string are IMMUTABLE objects (you will create always a new string using these methods)