Returns true if the string length is between the given values
bool lengthBetween(int min, int max) { return length >= min && length <= max; }