|
Hello..
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 hebrew_general_ci collation
any help would be appreciated...
Started by mudit on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Not sure Hebrew need such font..
|
|
Hey,
I need a function that matches full words in hebrew in php.
Please help.
Started by Haim Bender on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Since I don't know hebrew I can'....
I used this to generate my sample input.
Try this regular expression describing Unicode character properties :
/\p{Hebrew}+/u
Assuming your chart (edit: found more good hebrew/unicode info here ).
|
|
How to enter hebrew with diacritics ("nikkud") in windows
Started by flybywire on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Start -....
Click OK.
For Keyboard layout/IME: select Biblical Hebrew (SIL).
Make sure you are set to write in Hebrew, have caps-lock on, press shift and the numbers and signs -> Details -> Add For Input language: select Hebrew.
|
Ask your Facebook Friends
|
Hi,
i"m trying to fint if a string starts(first letter) width an RTL language/ hebrew.
any ideas?
Started by Gilad on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This will find hebrew letters encoded in the Hebrew Unicode code point range: [\u0590-\u05FF]
if (str.charCodeAt(0) > 0x590) && (str.charCodeAt(0) < 0x5FF) then it is most probably a hebrew a single Hebrew character.....
|
|
Where can I find a list of Hebrew stop words?
Edit: edit my answer to add more, if there are more...
Started by Itay Moav on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is a problematic concept in Hebrew due to the morphology & orthography - some of the useful ones.
|
|
How can I send sms in hebrew with clickatell ? it arrives as giberish.
Started by flybywire on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
However, I found out when I did this that this is not the only issue, many phones do not support displaying unicode... .
This should be in their docs.
Is it in unicode ? If I remember correctly they require unicode to be escaped into hexadecimal representation .
|
|
I have a problem. I need to use Speech recognition in hebrew but I don't know how to do that! I use C# 2008
Started by TAl on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here are two links: c-sharpcorner , GotSpeach.net
what do yo mean by learning how to recognize the correct pronunciation of "Shibboleth... .
After that, everything should be a breeze.
Start by learning how to recognize the correct pronunciation of " Shibboleth " .
|
|
Hi
How to use Datagrid in Right-to-left (Like Hebrew or Arabic language) ?
(WS2008,WinMobile2005,FW3.5)
thank's in advance
Started by Gold on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
How design datagrid whit align right to left?.
You can use the sample for custom drawing from the CF team as a base .
If you need RTL, you'll have to custom draw the cells .
The datagrid does not support RTL at all.
|
|
What is the accepted way for entering passwords in Hebrew / Hebrew localised installations? Should the password entry dialog be right aligned with new characters appending on the left? like this:
| | | | | | |
Or do they generally left align with new ...
Started by Skizz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Taking a quick look around, it looks like a lot of applications translated to/written for Hebrew automatically changes when the user switches the keyboard between Hebrew and English modes.
|
|
Hi I am trying to use Image module in order to make bitmaps with hebrew lettering in it. when printing from the shell (idle) I managed to print hebrew, but when trying to draw text to a bitmap it draws some ascii lettering.
this is the code:
import Image...
Started by ariel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is there an appropriate one for Hebrew? e.g.:
font)
I think your code is drawing an ascii string (and Hebrew is f r away from ascii) in the wrong font..
This
They also specified a font.
|