Does anyone know a regular expression to validate MSISDN-format mobile numbers?
I looked into a solution posted at http://charlvn.blogspot.com/2010/06/msisdn-regular-expressions.html but I think that's not a generic solution.
I'm looking for a validation regex that could validate any MSISDN-standard mobile number. http://en.wikipedia.org/wiki/MSISDN
Secondly, I'm looking for the means to check whether a valid MSISDN mobile number is from a specific country, like "31628000000" is a number from the netherlands, because it starts with the netnumber "31".
I'm going to implement the validating part in Python.
Thanks in advance!