wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Helen Yu tags: strings, regex, validation
Create a function that returns true if a string contains any spaces. Examples hasSpaces("hello") ➞ false hasSpaces("hello, world") ➞ true hasSpaces(" ") ➞ true hasSpaces("") ➞ false hasSpaces(",./!@#") ➞ false Notes An empty string does not contain any spaces. Try doing this without RegEx. Don't forget to return the result. If you get stuck on a challeng
Create a function that returns true
if a string contains any spaces.
hasSpaces("hello") ➞ false
hasSpaces("hello, world") ➞ true
hasSpaces(" ") ➞ true
hasSpaces("") ➞ false
hasSpaces(",./!@#") ➞ false
return
the result.