A call is sent by Cisco UCM to Expressway with a URI of 75080001@expc1a.pod8.test.lab.
If (7508')@expc1a\.pod8\.test\.lab.* is the pattern string, what would be the replacement string of the transform in Expressway to re-write the call so that it becomes 75080001@conf.pod8.test.lab?
Click on the arrows to vote for the correct answer
A. B. C. D.C.
This question is testing your knowledge of call routing and transformation in Cisco Expressway. The scenario is that a call is being sent from Cisco Unified Communications Manager (UCM) to Cisco Expressway with a URI of 75080001@expc1a.pod8.test.lab. The objective is to re-write the call so that it becomes 75080001@conf.pod8.test.lab using a transform.
The pattern string given is (7508')@expc1a.pod8.test.lab.*. Let's break down this pattern string:
) - This is a capturing group that matches the digits 7508 followed by any character (represented by the
symbol). The purpose of the capturing group is to extract the digits 7508 so that they can be used in the replacement string.The replacement string must be \1@conf.pod8.test.lab, which includes a reference to the first capturing group (\1) and the new domain name conf.pod8.test.lab.
The correct answer is therefore C. \1@conf.pod8.test.lab.