manual

ESTOS CallControlGateway 4.0.0.21648
28
Syntax
If a regular expression matched the phone number then this number is treated
as an external phone number. View Regular expressions.
Examples:
Effect
Search for
The emergency number 110 is always external
^110$
All phone numbers which begin with 11 are external
^11
All phone numbers which begin with 11 and have precisely five digits are external
^11[0-9][0-9][0-9]$
6.6.7 Internal phone system rules
Internal phone numbers:
If a phone system is used, internal and external numbers must be
differentiated. At Phone system location you can define the length of internal
phone numbers. In some cases it is necessary to treat certain phone numbers
as internal numbers regardless of their length. This affects both didialg from
the PC and the formatting of numbers reported by the phone system.
Here you can set rules (regular expressions) with which internal phone
numbers are identified.
Syntax
If a regular expression matched the phone number then this number is treated
as an internal phone number. View Regular expressions.
Examples:
Effect
Search for
All phone numbers which begin with 9 are internal
^9
All phone numbers which begin with 77 and have exactly 5 digits are internal
^77[0-9]?[0-9]?[0-9]?$
All phone numbers which begin with 77 and have exactly 5 digits are internal
^77[0-9][0-9][0-9]$
6.6.8 Regular expressions
Regular expressions are patterns with which strings can be searched. It is thus
possible to determine whether the string fulfils specific parameters (length,
begins with certain numbers, etc.) or to replace certain parts of the string.
Search for:
This expression is used on the string. If a match is found, the string is replaced
with the replace with expression.