Hi.
When a user dial the number +46 (0)8 621 11 11
i like to have a normalization rule that changes the number to +4686211111.
For this I have created the following rule:
^(\+\d{2})\(0\)(\d+)$
$1$2
This does not work. If I under stand what happends correctly the all spaces and () are removed before my normalization rule is used. That give me a problem since I can not identify the 0 that I want to remove since it does not have the () around it when
my rule is used.
Am I correct and is there a solution for this?
Thomas