A-61635 December 2010 4-23
?<3,0>
Description – a string that contains 3 or more characters of any type
Valid input examples
ABC
+%=
ABC Company
jsmith@ABC.com
Invalid input examples
A1 too short
A<4,4>
Description — a string of exactly 4 alphabetic characters. The same format as
AAAA.
9<0,3>
Description — a string of 3 or less numeric characters. String may be empty.
A<3,2>
Description — invalid input format, maxlength must be greater or equal to
minlength if maxlength is greater than 0.
Input Number formats #
#(min, max)
#(min, max]
#[min, max}
#[min, max]
# — used to represent one of the following number types:
i : integer number that may be positive or negative, does not contain a decimal
point
n : any number, positive or negative and may contain a decimal point.
The value range or precision of the number is limited by the operating system.
The valid number range is typically:
i : -2,147,483,648 to 2,147,483,647
n : 1.7 E +/- 308 ( 15 digits )
The min and max values define the range of the number value.
The value of min and max must be consistent with the number type. For
example if the number type is i, both min and max must be a valid integer
number.
The character * may be used in place of min or max and represents an infinite
value or no limit.
The max value must be greater or equal to the min value.
( : input value must be greater than min.
) : input value must be less than max.
[ : input value must be greater than or equal to min.
] : input value must be less than or equal to max.