Copyright @ 2011-2015 Dinstar
If the checkbox on the right of Caller is selected, it means the caller number
will be manipulated; if the checkbox on the right of Called is selected, it
means the called number will be manipulated.
Note: During number manipulation, deletion rules are carried out first, followed by adding rules. If ‘Replace
by’ has been set, deletion rules and adding rules are invalid.
4.6.7 Dialplan
Dialplan is used for number dialing of calls through FXS and FXO ports.
Regex (Regular Expression) Syntax
Explanation of frequently-used metacharacters in Regex:
Matches the starting position in a string. For example, ^134.
Matches the ending position of a string. For example, 2$.
Separates alternate possibilities. For example 2|3|4.
Quote the next metacharacter.
Matches a single character that is contained within the bracket. For
example, [123] matches 1, 2, or 3. [0-9] specifies a range which matches any
lowercase letter from "0" to "9".
Matches any one character except those enclosed in [ ]. For example, [^9].