0
removing special letter from a string
which built in can I use to remove all of special letter from string ? for example I have a string and I want to remove all of vowels from that, which function can help me? replace just can remove first one, I want something for complete removing.
2 Answers
+ 5
replaceAll()
+ 2
string.replaceAll(/\W/g, '')
https://code.sololearn.com/WPZj529YI0JN/?ref=app