View Single Post
blubbi's Avatar
Posts: 288 | Thanked: 113 times | Joined on Dec 2009 @ Germany
#52
Originally Posted by nexus101 View Post
Hooray! It works :-)

Thank you all for your help and especially to Bjoern for this very appreciated programm!

Some feature requests:
1) Check for leading + in phone numbers.
Oh, okay, i thought it worked with 0somthing or +something, so I have to revise my regexp check to only allow number with +something

Code:
re.match('^(\+[1-9][0-9]+)|(0[0-9]+)', num)
Needs to be changed to
Code:
re.match('^(\+[1-9][0-9]+)', num)
Originally Posted by nexus101 View Post
2) Check for phone is online or not and go temporarily online if not.

Thanks again,
nexus
I'll put that on my TODO list. Thanks for the hint.

Cheers
Bjoern