Pattern to match digits
Contract| Parameter key | Default value | Type | | a_type | type.<range_of min="0" max="9" include_max=true/> | range_of | | regex_string | "\d" | string | | Water Contract<class pattern.digit
a_type =<type.range_of min="0" max="9" include_max=true/>
regex_string ="\d"=string
_native_object=<ja.org.apache.regexp.RE/>
/> | |
See also: is_type_for, get_string_segments, replace_string_segments, string_segment, alphanumeric, digit_not
Returns a pattern with a regex_string field set to
" \d ". This pattern is useful for
matching digits in the target string.
Example: String contains at least one digit
<pattern pattern.<one_or_more pattern.digit /> />.
<is_type_for "!@#abCDefg087" />
 | true |
Example: Does not contain digits
<pattern pattern.<one_or_more pattern.digit /> />.
<is_type_for "!@#_():|Abc" />
 | false |
© Copyright 2007 Clear Methods, Inc.