dojo.number._integerRegexp
dojo.require("dojo.number");
defined in dojo/number.js
Builds a regular expression that matches an integer
parameter | type | description |
---|
flags | dojo.number.__IntegerRegexpFlags | Optional. field | type | description |
---|
.groupSize | Number | Optional. group size between separators | .groupSize2 | Number | Optional. second grouping, where separators 2..n have a different interval than the first separator (for India) | .separator | | more than one symbol use an array, e.g. `[",", ""]`, makes ',' optional. | .signed | Boolean | Optional. The leading plus-or-minus sign. Can be true, false, or `[true,false]`. Default is `[true, false]`, (i.e. will match if it is signed or unsigned). |
|