wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Alex Golubov tags: strings, formatting, regex
Create a function that takes a string, removes all "special" characters (e.g. !, @, #, $, %, ^, &, \, *, (, )) and returns the new string. The only non-alphanumeric characters allowed are dashes -, underscores _ and spaces. Examples removeSpecialCharacters("The quick brown fox!") ➞ "The quick brown fox" removeSpecialCharacters("%fd76$fd(-)6GvKlO.") ➞ "fd76fd
Create a function that takes a string, removes all "special" characters (e.g. !, @, #, $, %, ^, &, \, *, (, )
) and returns the new string. The only non-alphanumeric characters allowed are dashes -
, underscores _
and spaces.
removeSpecialCharacters("The quick brown fox!") ➞ "The quick brown fox"
removeSpecialCharacters("%fd76$fd(-)6GvKlO.") ➞ "fd76fd-6GvKlO"
removeSpecialCharacters("D0n$c sed 0di0 du1") ➞ "D0nc sed 0di0 du1"
N/A