Cleaner one:

Just find replace into this:
tel = {"SPQ": "3[1,0-3]", "SPQ": "70(1-3)" }

def get_operator(number):
import re
for key, value in tel:
  if re.match(value, number):
    return key

pre-compile the re before with re.compile and add then to the "tel"
array in stead to get better preformance.

/R


On Jun 25, 12:08 am, Kuba Kucharski <kuba.kuchar...@gmail.com> wrote:
> definitely nicer than mine. Thanks.
>
> --
> Kuba
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py Web Framework" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to