// Check for white Spaces in Java String str = "Test Word"; if(str.indexOf(' ') != -1){ return true; } else{ return false; }