boolean inRange(String lowerBound, String upperBound)
Indicates whether or not this string is within the specified range. The checking is inclusive, meaning that the lower and upper bounds of the range will be tested for the string. Case differences (upper/lower) are not ignored.
Input Parameters
lowerBound | String The lower bound of the range to check against (inclusive). |
upperBound | String The upper bound of the range to check against (inclusive). |
Return Value
Boolean Returns true if this string exists within the specified range, false otherwise. |