UC8000 IPPBX User Manual
51
+
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