> I wish I could specify all the unicode letters (for all other
> languages apart from Turkish) as something like \w.

Best thing I've come up with is to go over the unicode list and
identify which languages you want to support. You then use unichr to
construct a regex such as: '[%s-%s]' % (unichr(start of unicode
block), unichr(end of unicode block)).

--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to