Questions tagged [non-latin]
70 questions
0
votes
0 answers
Write Latin and non-Latin language without changing order(eg; always write from left side)
Like if I have a string in English + Urdu language
name = "جیمز is my name"
print(name)
The Output I'll get is: is my name جیمز
How Can I change this to: جیمز is my name

Ahmad Mahmood
- 35
- 6
0
votes
1 answer
Replace all non latin characters with their latin a-z counterparts and word count in VBA
I am trying to write a script in VBA that
will:
replace all É and other similar
characters with their latin
counterparts.
Remove all non alpha numeric
characters.
Remove duplicate spacing
then word count the string
I have worked out that i can…

Mark
- 943
- 3
- 10
- 11
0
votes
0 answers
Russian language in CouchDB
I try to run query in CouchDB 2.3.1 with russian language data using regex and get nothing:
{
"selector": {
"class_name": "cat.patients",
"name": {
"$regex": "(?i)ИВАНОВА"
}
}
}
But this query works:
{
…
0
votes
2 answers
MySQL: adding support for Asian characters to an existing database
I'm looking for a best-practices approach to adding support for Asian character sets to an existing database. We have existing tables that are in the latin1 charset:
show create table books
CREATE TABLE `books` (
`id` varchar(255) NOT NULL,
…

George Armhold
- 30,824
- 50
- 153
- 232
0
votes
1 answer
How can I save non-Latin characters in a text file via VBScript?
Chinese characters cannot be saved in a text file via VBScript.
The VBScript is in a folder whose name is in Chinese: 视窗. The script will create a text file, in which the current working directory will be shown. The Chinese characters cannot be…

Matthew Wai
- 962
- 7
- 14
0
votes
0 answers
gedit weird encoding of standard text file
This question is also posted in AskUbuntu here.
I have a standard text file that is shown perfect with cat:
$ cat myfile.txt
v0[shape = Mrecord, label = ""]
When I use xxd to examine the exact line ending I get this:
$ xxd myfile.txt
00000000: 7630…

OrenIshShalom
- 5,974
- 9
- 37
- 87
0
votes
4 answers
iPhone encoding of non latin characters
I am trying to parse a JSON response of a GET request. When the characters, are latin no problem.
However when they are not latin the message doesn't come out correctly. I tried greek and instead of "πανος" i get "& pi; & alpha; & nu; & omicron; &…

tappy
- 3
- 3
0
votes
2 answers
support in non latin fonts in centos
I'm trying to enable export html to pdf in my language (Hebrew).
The html and export work fine on my local machine (Mac).
I'm using https://github.com/wkhtmltopdf/
On the remote machine(Centos7)
The html works with the Hebrew fonts but the export to…

WebQube
- 8,510
- 12
- 51
- 93
0
votes
1 answer
Wikipedia API for nan latin scripts
I am using wikipedia api to get json from a specific title and parsing it in my webpage. I want to add language translator like wiki does but all the non latin scripts like greek,chinese,japanese,hebrew etc are not working.It is perfectly working…

Tushar gawai
- 13
- 3
0
votes
1 answer
allow any character in htaccess query string validation (non-English characters)
I'm having this htaccess rule
RewriteRule ^page/([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+)/(.*)/([0-9a-zA-Z_-_]+)
/([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+)$ page.php?lang=$1&search=$2&state_type=$3&city=$4
&stats=$5&area=$6&cost=$7 [NC,L]
The…

PHP User
- 2,350
- 6
- 46
- 87
0
votes
1 answer
Contact form doesn't send the mail when greek characters are used in the name field
I have a very simple html contact form that asks from the user a name, an email and then the message area. The problem is that when the user enters their name in greek characters (as the site is in greek language), the message never gets delivered.…

Zisis Paparidis
- 37
- 6
0
votes
2 answers
wchar_t variables only store half of an Urdu character in C
I am trying to read and manipulate Urdu text from files. However it seems that a character is not read whole into the wchar_t variable. Here is my code that reads text and prints each character in a new line:
#include
#include…

hazrmard
- 3,397
- 4
- 22
- 36
0
votes
1 answer
Non-Latin characters in html input fields
I am having an issue with non-Latin characters. For example, if I go to the link below and type in "ü" and press submit, İ get %C3%BC instead of that letter. I have tried to use content="text/html; charset=utf-8 ", but it did not work. Do you guys…

John
- 15
- 2
0
votes
2 answers
Sorting sets of non-latin characters in the order of a string?
I am using the following code form sorting:
letters = '세븐일레븐'
old = [('세븐', 8), ('븐', 2), ('일', 5), ('레', 4)]
new = sorted(old, key=lambda x: letters.index(x[0]))
For non-latin characters, the output is the same as the input:
[('세븐', 8), ('븐', 2),…

thomascrha
- 193
- 1
- 1
- 13
0
votes
0 answers
Converting Chinese Characters to Latin Characters in R
Is it possible to convert non Latin Characters, specifically Chinese characters, to Latin characters? I have been reading about the iconv function but I have failed to convert. A simple example is if I want to convert this line to a latin…

m.alcala
- 91
- 1
- 1
- 8