Sunday, February 27, 2011

Re: How to check if string is in Hebrew



On Sun, Feb 27, 2011 at 6:01 PM, ydjango <traderashish@gmail.com> wrote:
Hebrew is within the unicode range 0x590 to 0x5ff.

I tried
if lang_string[0] >= u'0x590' and lang_string[0] <= u'0x5ff':

but it does not seem to work.

How do I check if lang_string is in Hebrew or not. Using Python 2.5,
Django 1.2

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


See the ord() function:

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

No comments:

Post a Comment