|  | 5 年 前 | |
|---|---|---|
| .. | ||
| README.md | 5 年 前 | |
| code.cpp | 5 年 前 | |
| unitTest.cpp | 5 年 前 | |
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.