Cisco Video Infrastructure Implementation — Question 14
An engineer must match any incoming call to the Expressway that is searching for an E.164 address of only 6 digits and append the domain cisco.com to the end.
Which pattern match and replace string using regular expressions accomplish this task? (Choose two.)
Answer options
- A. pattern match: ({6}\d)
- B. pattern match: ({6}*)
- C. replace string: \[email protected]
- D. pattern match: ({5}\d)
- E. replace string: \[email protected]
- F. replace string: \[email protected]
Correct answer: A, E
Explanation
Option A is correct because it accurately matches a sequence of exactly 6 digits. Option E is correct as it properly appends the domain cisco.com, which is required in the task. The other options either do not match the correct number of digits or do not provide the correct replacement string.