Pattern to match non-digit characters
Contract| Parameter key | Default value | Type | | a_type | opt | | regex_string | "\D" | string | | Water Contract<class pattern.digit_not
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
Returns a pattern with a regex_string field set to
" \D ". This pattern is useful for
matching non-digit characters in the target string.
Example: String contains non-digit characters
<pattern pattern.<one_or_more pattern.digit_not /> />.
<is_type_for "123Abc!@#890" />
 | true |
Example: Does not contain non-digit characters
<pattern pattern.<one_or_more pattern.digit_not /> />.
<is_type_for "0123456789" />
 | false |
© Copyright 2007 Clear Methods, Inc.