Prepend Prefix Pattern Match
00649 NXXXXXX
0064 0 09NXXXXXX
The first one works just fine i.e. the user dials the number and the correct dialling code (international and local) is added.
The second one does not work. What I am trying to achieve is if a number like 091234567 is dialled, that the 0 is stripped off and the international dialling code is added i.e. 006491234567
Yeah, that’s what caused your problem. 0|91234567 will match the pattern “091234567” but it will only pass “91234567” to the trunk. I’m glad this solved your problem.