For my application I need a common formatting scheme for phone Numbers. Unfortunately the numbers in the phone Book do not share the same scheme. E.g.
- (707) 555-1854
- 555-610-6679
- 06641234567
- +43 664 1234567
- 00436641234567
Is there some kind of number formatter on the iOS platform which can transform these numbers into a scheme looking like this:
+'CountryCode''Number'
How do i get the right country code for local numbers?
Thanks for your help.