Add a plus sign in front of every number
The following rule will add a plus sign to every phone number that does not start with a plus sign.
Route 1. - 971 prefix to a +971 prefix
This rule will add a plus sign in front of any number.
Change this: 97466781661 To this: +97466781661
Change this: 9711111111 To this: +9711111111Match condition:
/^[^+].*$/
The above condition can be broken down like this:
start the matching: ^
anything that does not start with a plus sign: [^+]
anything can come after this: .*
end the matching: $
/^(.*)$/+$1/
The above condition can be broken down like this:
change this: ^(.*)$
to this: +$1
The route properties are:
Route name: | Route 1 |
From: | Any_SMS_User@localhost |
To: | SMPP_client_1@localhost |
Mode: | Move |
Match To address: | /^[^+].*$/ |
Modify To address: | /^(.*)$/+$1/ |
The above table contains the settings you need to apply
More information
- Hoe het SMS ontvanger telefoonnummer te wijzigen
- Nummerprefixen
- Plusteken vooraan
- Hoe de SMS Sender ID te wijzigen
- Hoe een SMS door te sturen naar meerdere ontvangers
- Hoe de SMS sender en ontvanger om te wisselen
- Hoe de SMS tekst te wijzigen
- Hoe tekst toe te voegen aan het einde van de SMS
- Hoe SMS berichten te versleutelen
- Hoe het ontvangeradres te manipuleren met regexp
- Hoe de SMS tekst te wijzigen met C#