vote up 3 vote down star
2

This question asking for a phone number format API in Java got me wondering why such an API doesn't seem to exist. Given the number of validation classes available under Apache Commons, I would have thought such an API would be included.

My question is, does anyone know of a phone number formatting/validation library available in any language that could be used as a model for a small Java open source project? Also, other than the large number of different phone number formats used throughout the world, does anyone know of any reason that such a project would be infeasible?

flag

3 Answers

vote up 6 vote down check

Such an API in any language: Number::Phone (example submodule: Number::Phone::US).

Data: the ITU's National Numbering Plans index.

link|flag
1  
Crap, there are a lot of countries. :) – Bill the Lizard Feb 2 at 16:12
Thanks for the ITU link, even Qatar's data is current (this is rare). – Osama ALASSIRY Feb 8 at 15:18
vote up 0 vote down

I think one problem is that there's so many different phone number formats in the world.

link|flag
vote up 0 vote down

Like it was said in the answers to the other question, no one's seen any for Java, and like you said, it would be nearly impossible due to the difference of phone number formats across the world.

And if you know the different formats for the regions that you're targeting, then it's usually pretty easy to implement it in regular expressions.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.