Tagged Questions

The Hebrew language is written right to left (RTL), much like Arabic and Farsi, requiring special handling when mixing Roman numerals and Latin characters in order to maintain correct flow.

learn more… | top users | synonyms

13
votes
2answers
942 views

Lucene Hebrew analyzer

Does anybody know whether one exists? I've been googling this for monthes... Thanks
9
votes
5answers
406 views

TextView gravity not working with Hebrew

I have TextView on Hebrew that i want to be on the right side, so i'm doing <TextView.... android:gravity="right" </TextView> On some phones it will be aligned to right and on some ...
8
votes
4answers
2k views

Python's os.path choking on Hebrew filenames

I'm writing a script that has to move some file around, but unfortunately it doesn't seem os.path plays with internationalization very well. When I have files named in Hebrew, there are problems. ...
7
votes
3answers
72 views

HTML with Hebrew characters displaying weird

I have a chatbox that displays chats like this Username: my chat message Username2: chat message But then someone registered using Hebrew characters on his username now when he posts on our ...
7
votes
1answer
210 views

text('hebrew string') matlab

Hi I want to display a hebtrew text to the screen using thecommand text in matlab text(0.6,0.5,'ירוק','rotation',180,'fontsize',50,'color','r') the problem s that it displayes jibrish. anybody ...
6
votes
3answers
293 views

How can I get today's Jewish date in c#?

I have this code: DateTime dtAnyDateHebrew = new DateTime(5767, 1, 1, new System.Globalization.HebrewCalendar()); how can I get the numeric Hebrew date of today? Meaning: For example I want to ...
4
votes
2answers
53 views

RTL is on web page reverses numbers with a dash

When my website displays Hebrew text mixed with numbers, and there is a number with a dash in the middle, the number with the dash in the middle is displayed RTL. For example, with the text: רמה ...
4
votes
1answer
572 views

Android setting problem with TextView for Hebrew text?

I am setting text in TextView from string resource. Normally, Hebrew works in Right-To-Left format. When I set a text, it sets the text Right-To-Left format in LG, Samsung, Sony Phone but in HTC it ...
4
votes
1answer
401 views

Sending Hebrew subject in php mail goes Klingon…?

I'm trying to send email with hebrew content/subject like so: $to = 'email@email.com'; $subject = "איזה יום יפה היום"; $message = 'ממש יום יפה'; $headers = 'From: email@email.com' . "\r\n"; ...
4
votes
3answers
489 views

php: using DomDocument whenever I try to write UTF-8 it writes the hexadecimal notation of it

When I try to write UTF-8 Strings into an XML file using DomDocument it actually writes the hexadecimal notation of the string instead of the string itself. for example: ...
4
votes
4answers
1k views

Right to Left UI in iPhone (Hebrew)

I'm struggling in creating a RTL UI in iPhone application. The framework doesn't seem to have any support for RTL languages. The only thing is the alignment inside labels, which is nice, but it ...
4
votes
4answers
537 views

Can I generate a PDF file in Perl using Hebrew and English text?

Do you know if Perl's PDF::API2 module can generate documents with both English and Hebrew text? I have searched for a while and cannot seem to find how to handle right-to-left language text. ...
4
votes
4answers
1k views

Localize current time in PHP

Trying to display current time with PHP (using this): $date = date('m/d/Y h:i:s a', time()); echo $date; As simple as it gets. How do I localize it? I want to translate the months and days ...
4
votes
9answers
3k views

Why does \w match only English words in javascript regex?

I'm trying to find URLs in some text, using javascript code. The problem is, the regular expression I'm using uses \w to match letters and digits inside the URL, but it doesn't match non-english ...
3
votes
1answer
49 views

How to capture Hebrew with regex in Java?

I'm trying to catch a section of Hebrew text (the origin is comments on a news site) using the following regex: [\u0590-\u05FF \\p{Graph} \\s]+ It works for most comments but some comments are ...
3
votes
2answers
68 views

How to tell if a string contains characters in Hebrew using PHP?

Trying to figure out how to tell whether a string contains any characters in Hebrew with no luck. How can this be done?
3
votes
1answer
127 views

How .NET's regex engine treats RTL+LTR mixed strings?

I have a mixed Hebrew/english string to parse. The string is built like this: [3 hebrew] [2 english 2] [1 hebrew], So, it can be read as: 1 2 3, and it is stored as 3 2 1 (exact byte sequence in ...
3
votes
3answers
182 views

How is this octet stream being interpreted as Hebrew UTF-8 encoding?

The following byte stream is identified by as UTF-8, it contains the Hebrew sentence: דירות לשותפים בתל אביב - הומלס. I'm trying to understand the encoding. ubuntu@ip-10-126-21-104:~$ od -t x1 ...
3
votes
3answers
770 views

How to allow right to left languages in Ruby on Rails 3

I am interested in creating a website in Hebrew using Ruby on Rails 3. The problem is when I put Hebrew into my view I am told that it is not supported and I should add UTF-8. I've been working on ...
3
votes
1answer
828 views

Android 2.3 Hebrew Support in Webview

I have testing an app I ported to 2.3 on the Android 2.3 emulator, the app includes Hebrew strings displayed in a WebView required solving three problems: Telling webview to use hebrew fonts (see my ...
3
votes
1answer
96 views

Advice on css and Html

I need some advice on css and styles, is not an easy question to ask, I'm on the way to develop a project that's going to be in a few languages, I know how to manage the dictionaries, at least for ...
3
votes
1answer
890 views

Using hebrew with the android emulator

Hi I want to be able to run a "Hello World" application on my android emulator in hebrew How can I do that? is it supported? thanks
3
votes
3answers
3k views

Android: RTL support - digits embedded in a right to left sentence (Hebrew)

My application displays Hebrew text which comes from a Web Service. When a sentence contains digits (in the middle of it), the digits appear in a mirror view: 29 appears as 92, 21:45 appears as 54:12 ...
3
votes
1answer
308 views

Calculating Hebrew date in Python

I'd like to calculate Hebrew dates (primarily the current Hebrew date) in Python. Which library is mature, easy to use, and documented? I note these. There may be others. Python Date Utilities ...
3
votes
3answers
689 views

Javascript - how to find hebrew?

i"m trying to fint if a string starts(first letter) width an RTL language/ hebrew. any ideas?
3
votes
3answers
884 views

show hebrew words in a php response

i am sending a JSON response through a php script which has some hebrew words.but when i run this script on browser it is showing '?' instead of hebrew characters.. FYI.. database is in ...
3
votes
3answers
1k views

how can i detect hebrew characters both iso8859-8 and utf8 in a string using php

I want to be able to detect (using regular expressions) if a string contains hebrew characters both utf8 and iso8859-8 in the php programming language. thanks!
3
votes
1answer
913 views

C# Reading Hebrew?

My program reads a CSV file that contains hebrew text, it then displays the values in a form but the text is unredable. What am I doing wrong? Thanks James
3
votes
2answers
496 views

Converting hebrew text to an image using imagemagick

I need to convert text to an image. Using imagemagick I can get this done. However, part or all of the text could be in Hebrew (an RTL language). This means the words in Hebrew are rendered backwards. ...
3
votes
2answers
775 views

writing text with diacritic (“nikud”, vocalization marks) using PIL (python image library)

writing simple text on an image using PIL is easy. draw = ImageDraw.Draw(img) draw.text((10, y), text2, font=font, fill=forecolor ) however, when I try to write Hebrew punctuation marks ...
3
votes
7answers
1k views

hebrew appears as question marks in netbeans

I am using netbeans 6.1 on 2 computers. on one of them the program: public static void main(String argv[]) { System.out.println("שלום"); } prints normally, and the on the other question ...
2
votes
2answers
56 views

how do i split a multi-languages(English, Chinese, Hebrew) line in python and get the Unicode hex value?

i try to split this kind of lines in python: aiburenshi 爱不忍释 "לא מסוגל להינתק, לא יכול להיפרד מדבר מרוב חיבתו אליו" this line contains Hebrew, simplified Chinese and English. if i have ...
2
votes
2answers
72 views

wprintf with UNICODE (Hebrew) characters

I have a wchar_t array with English and Hebrew characters and when I print it with wprintf() it prints to console the English characters only. When I'm using _wsetlocale( LC_ALL, L"Hebrew" ) I get the ...
2
votes
1answer
34 views

how to Write in Django SlugField with hebrew

i need help how to write Hebrew in SlugField in django models now i can write only English something like: hello-world but i what to write in SlugField = "שלום-עולם" and the url be like: ...
2
votes
0answers
97 views

Setting UILocalizedIndexedCollation Languages Order

I am using UILocalizedIndexedCollation in my application to return indexed tableview. My locale is set to Hebrew and on the indexed table I can see index list with both English and Hebrew letters. ...
2
votes
2answers
80 views

hebrew in the command line - matlab [closed]

Possible Duplicate: text('hebrew string') matlab shalom I am trying to work with hebrew strings in matlab. but when I am trying to assign hebrew string to a variable, it doens't ...
2
votes
1answer
212 views

Problem in rendering Hebrew text in UIWebview

I have some hebrew text stored in database. When I fetch & render it in UIWebview after applying some css (setting the background color and margin for the page) the text comes up fine but the ...
2
votes
3answers
332 views

How to put Hebrew character in Android JAVA file?

For Android Platform: I need to put Hebrew Character ₪ and some more like אורנג in string to check with the incoming data in java file. When I put this character It shows an error like "Some ...
2
votes
2answers
712 views

problem with hebrew - MySql, c#

i've problem to insert hebrew strings to MySql. Introduction I set the MySql to Utf8. I set the table as charset utf8 with collation uft8_general_ci I set the connection string as it: ...
2
votes
1answer
521 views

Convert Hebrew Letters into Equivalent Number

Other then hard coding this by hand I was wondering if there was a way that the.net framework would have this built in automaticaly, I know it can automatically convert hebrew dates into georgian ...
2
votes
1answer
370 views

Why does PHP's preg_split split the hebrew letter “נ” in UTF-8 when splitting on “\s”?

This doesn't work, it turns it to gibberish: $foo = 'נ'; $bar = mb_convert_encoding($foo, 'UTF-8', mb_detect_encoding($foo)); print_r(preg_split('/\s/', $bar)); Array ( [0] => � [1] => ) But ...
2
votes
1answer
500 views

Working with WPF(C#) calendar control, hebrew and georgian dates conversion

I need to build a simple app, A calendar with notes, working with a simple db and standard calendar is easy. the problem is with a feature that i must add: I need that every note will have a Hebrew ...
2
votes
1answer
220 views

right-to-left languages in Python

I want to write a Hebrew string in Python and then show it onscreen. The problem is that I get a mirror view of what I wrote. How can I set the string to use RTL instead of left to right?
2
votes
1answer
419 views

How to generate hebrew strings in python 3?

I'm trying to create hebrew strings but get syntax errors. It works in the IDLE shell but not in Pydev. Here's what I've tried so far: s = 'מחרוזת בעברית' #works in the shell only s = u'מחרוזת ...
2
votes
2answers
529 views

Python and hebrew encoding/decoding error

I have sqlite database which I would like to insert values in Hebrew to I am keep getting the following error : UnicodeDecodeError: 'ascii' codec can't decode byte 0xd7 in position 0: ordinal not in ...
2
votes
2answers
755 views

Drawing Hebrew text to and image using Image module (python)

This is an issue I already asked about and several got answers but the problem remained. when I try to write in hebrew to an image using Image module I get instead of the hebrew lettring some other ...
2
votes
2answers
214 views

python hebrew input\filesytem format

import os import pprint import subprocess def Convert (dir): curDir = dir pathToBonk = "C:\\Program Files\\BonkEnc\\becmd.exe" #Where the becmd.exe file lives problemFiles = [] #A list of ...
2
votes
3answers
236 views

TTabControl: tabs displayed right to left

I am programming in a Hebrew environment and so I want the tabs on the top of a TTabControl to be displayed from right to left. The BiDiMode property doesn't affect the tabs, but rather text contained ...
2
votes
2answers
1k views

Right to Left Alignment for UITableView

I am working on an arabic app for iphone 3.0. i was wondering if there is a way that i can convert the UITableViewCell to be right-to-left. I want everything to be in the opposite direction. Any ...
2
votes
1answer
375 views

windows mobile 6 emulator

i am developing some apps in windows mobile 6 on visual studio 8 and i need to show some information in Hebrew but my emulator doesn't show that language ,instead he show very strange chars how do i ...

1 2 3 4