please can anybody explain me what this function do?i am confused
bool isOnlyLeftHand(string w) {
return (w.find_first_not_of("qwertasdfgzxcvb") == string::npos);
}//end isOnlyLeftHand
|
please can anybody explain me what this function do?i am confused
|
|||
|
|
|
Returns true if the string can be entered with the left-hand only (on the keyboard) :) |
|||||||||||
|
|
This looks for characters that are not any of In other words, return true if |
|||
|
|
|
It is literally checking for characters within the string that would be typed with the left handed. The code |
|||
|
|
|
returns true if any character other than those in the quoted string is absent in the input string represented by 'w'. |
|||
|
|