You can set up your regular expression like so:

import re

number_re = re.compile(r'\d+')

And then when you want to pull numbers out of the string, you can use this line:

number_list = number_re.findall(input_string)

That will give you a list of all the numbers in the string, or an
empty list if there are no numbers found. I hope this helps!

-Gul

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to