/^\(35\)6\(72\)$/
/9\1\2/
mikej412 wrote: The best place to practice is on a voice router. Create the translation rules and then use the test translation-rule command to try them out. The 2nd link has examples you can start with -- then try modifying them. Toss in some wildcards to make them more interesting. Then try multiple rules.
Crunchyhippo wrote: Evidently, if a number preceded by a ^ isn't in parenthesis, it goes first in the string as long as it's first; if a number preceded by a ^ is in parenthesis, the (in this case) first number in the replace string goes first. Had to figure it out the hard way.
Crunchyhippo wrote: rule 1 /^589\(.*\)/ /555\1/ The dialed string is: 5891672 The replaced string value is: 5891672 The 589 goes first, since it's preceded by a carat - I get that. Positon 1 is next, which is (.*\) and is anything - in this case, it's 1672. So you get 5891672.
Router#show voice translation-rule Translation-rule tag: 100 Rule 1: Match pattern: ^589\(.*\) Replace pattern: 555\1 Match type: none Replace type: none Match plan: none Replace plan: none Rule 2: Match pattern: ^\(289\)\(....\) Replace pattern: 601\2 Match type: none Replace type: none Match plan: none Replace plan: none Router#test voice translation-rule 100 5891672 Matched with rule 1 Original number: 5891672 Translated number: 5551672 Original number type: none Translated number type: none Original number plan: none Translated number plan: none Router#test voice translation-rule 100 589167299999 Matched with rule 1 Original number: 589167299999 Translated number: 555167299999 Original number type: none Translated number type: none Original number plan: none Translated number plan: none Router#test voice translation-rule 100 2896438 Matched with rule 2 Original number: 2896438 Translated number: 6016438 Original number type: none Translated number type: none Original number plan: none Translated number plan: none Router#test voice translation-rule 100 2896438999999 Matched with rule 2 Original number: 2896438999999 Translated number: 6016438999999 Original number type: none Translated number type: none Original number plan: none Translated number plan: none Router#