0
votes
0answers
38 views

RTL scripts in iOS action sheets; unexpected behavior

There's a view in my iOS app which basically shows a list of Wikipedias sorted by the language that Wikipedia serves. I'm adding a feature where, when a language is tapped, an action sheet will pop up ...
-1
votes
2answers
73 views

Text displayed differently in HTML5

I am building an HTML5 app that works with iPhone and Android. When I display text in this form: "the number is between 10%-15% 2. the number between 25%-35% 3.the number between 25%-35%...." In ...
5
votes
3answers
1k views

HTML5 page language, direction and encoding

What is the correct way of declaring a HTML5 page to be in Hebrew, RTL and utf-8 encoded? I haven't done it in a while, but I remember that in HTML4 it involved 3 or 4 tags and attributes that seemed ...
1
vote
4answers
600 views

Parsing through Arabic / RTL text from left to right

Let's say I have a string in an RTL language such as Arabic with some English chucked in: string s = "Test:لطيفة;اليوم;a;b" Notice there are semicolons in the string. When I use the Split command ...
8
votes
3answers
400 views

JavaScript: how to check if character is RTL?

How can I programmatically check if the browser treats some character as RTL in JavaScript? Maybe creating some transparent DIV and looking at where text is placed? A bit of context. Unicode 5.2 ...
0
votes
1answer
290 views

Print Arabic (RTL) and English (LTR) in the correct directions at the same time

I want to output "Arabic" and "English" text at the same time in Java for example, outputting the following statement: مرحبا I am Adham. I searched the internet and I found that the BiDi algorithm is ...
1
vote
2answers
158 views

Making a letter bold in cursive scripts like Arabic script

Consider Persian word سیب (/si:b/ apple). I want to make middle letter of it bold. Using the following code س<b>ی</b>ب produces س ی ب. How I can prevent the separation of the ...
2
votes
1answer
287 views

is it possible to recognize in android/Java if a string text is written from Right to left?

I'm writing an android application, and i need to recognize if the text i have in a String is written in a language that is RTL(right to left) ? Thanks!
0
votes
2answers
252 views

how do i split a multi-languages 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 ...
0
votes
1answer
199 views

Specifying the direction of the language of a string, and displaying it right

I have an application that reads some strings and displays them in some UILabels, but these strings are not from one language so I need to be able to set the alignment of the label to right if the ...
2
votes
4answers
745 views

How can I recognize RTL strings in C++

I need to know the direction of my text before printing. I'm using Unicode Characters. How can I do that in C++?
3
votes
1answer
512 views

How mixing LTR and RTL languages is managed in unicode?

Sometimes we have to show messages in display which is a mixing of RTL and LTR languages. The message is in unicode. So, how unicode handle the mixing? Is there any dependency on the platform?