IsLowerCase function

This is my code for this function

bool FBullCowGame::IsLowerCase(FString Word) const
{
	for (auto Letter : Word) {					// for all letters of the word
		if (islower(Letter) == false) {			// if letter is not lowercase
			return false;
		}
	}
	return true;
}
1 Like

Privacy & Terms