Returns true if s has a blank character from offset.
true
s
offset
bool hasBlankCharFrom(String s, [int offset = 0]) { return hasBlankCharInRange(s, offset, s.length - offset); }