Error! Use the Home tab to apply
标题
1 to the text that you want to appear
here.Error! Use the Home tab to apply
标题
1 to the text that you want to
appear here.
UC100-1T1S1O User Manual
Copyright©2011-2016 Dinstar
65
example,
colou?r
matches both color and colour
*
Indicates there is zero or more of the preceding element. For
example,
ab*c
matches ac, abc, abbc, abbbc, and so on.
+
Indicates there is one or more of the preceding element. For
example, ab+c matches abc, abbc, abbbc, and so on, but not ac
/d
Mark any digit, equal to [0-9 ]
/D
Mark any character that is not a digit, equal to [^0-9 ]
/s
Mark any blank character such as a space or a tab.
/S
Mark any character that is not a blank character
Examples of Regex Syntax:
^0755
Matches the phone numbers with starting digits of 0755.
^0755|^8899|^0110
Matches the phone numbers with starting digits of 0755, 8899
or 0110.
^[1][358][0-9]{9}$
Matches the phone numbers with the first digit as 1, the second
digit as 3, 5 or 8, the left nine digits as any of 0 to 9.
DigitMap Syntax:
Supported
Objects
Digit
0-9
T
Timer
DTMF A digit, a timer, or one of the symbols of A, B, C, D, #, or *
Range
[ ]
One or more DTMF symbols enclosed in the [], but only one DTMF
symbol can be selected
Range
()
One or more expressions enclosed the
(), but only one can be selected
Separator
|
Separate expressions or DTMF symbols.
Subrange
-
Two digits separated by hyphen (-) which matches any digit between
and including the two digits.
Wildcard
x
Matches any digit of 0 to 9
Modifiers
.
Matches 0 or more times of the preceding element
Modifiers
?
Matches 0 or 1 times of the preceding element
Examples of
DigitMap Syntax
(13 | 15 | 18)xxxxxxxxx
Matches the phone numbers with stating digits as
13, 15 or 18 and the left nine digits as any of 0 to 9