Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
10answers
815 views

Are there programming languages that rely on non-latin alphabets?

Every programming language I have ever seen has been based on the Latin alphabet, this is not surprising considering I live in Canada... But it only really makes sense that there would be programming ...
4
votes
1answer
188 views

Non-Latin characters in URL (Google App Engine)

In my project I have html file with non-Latin characters: Кондиционер.html. When i make request: www.myDomain.com/Кондиционер.html Server sends 404 error: Error: Not Found The requested URL ...
2
votes
1answer
188 views

How can I handle validation of non-latin script input in PHP?

I am trying to adapt a php application to handle non-latin scripts (specifically: Japanese, simplified Chinese and Arabic). The app's data validation routines make frequent use of regular expressions ...
2
votes
1answer
473 views

xslt disable-output-escaping turns non-latin characters into question marks “…???????????…”

I'm using xslt do display Solr response in html, my xsl file is in UTF-8 and non-latin characters (arabic) are nicely displayed, the problem is that when I use disable-output-escaping="yes" to parse ...
2
votes
4answers
584 views

Does MySql full text search works reasonably with non-Latin languages (Hebrew, Arabic, Japanese…)

Does MySql full text search works reasonably with non-Latin languages? (Hebrew, Arabic, Japanese...) Addition: Did some tests... It has some problems with Hebrew. Example: The name מוסינזון is ...
1
vote
0answers
28 views

MSysGit console and non latin filenames

I have install msysgit. But when I run Git Bash Console I can not input non latin charachers and non latin filenames are displayed as questuion marks. Is there any way to make console undertand non ...
1
vote
1answer
160 views

How to use non-latin characters with ScriptSharp

I am trying to write: options.Title = "Русский текст"; and in compiled JS i am getting: options.title = '\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd \ufffd\ufffd\ufffd\ufffd\ufffd'; So all ...
1
vote
1answer
221 views

GIThub and non-english windows?

As you probably know, Git Bash doesn't support non-latin characters. That results in multiple failures while creating and using SSH keys (since the paths are russian). Is there a workaround?
0
votes
0answers
12 views

Android non-latin letters conversion

I have search in the ListView. When I insert Latin letters, I need the result returned in cyrilic utf-8. I've been thinking about catching all letters and converting them to Cyrillic but there are 31 ...
0
votes
1answer
25 views

codeigniter non latin characters ajax call

I have a textarea and a button where i send the text via ajax to the database to post it. However when i post non-latin characters... it wont get them and it returns blank... if the text is in latin ...
0
votes
3answers
66 views

preg_match a keyword variable against a list of latin and non-latin chars keywords in a local UTF-8 encoded file

I have a bad words filter that uses a list of keywords saved in a local UTF-8 encoded file. This file includes both Latin and non-Latin chars (mostly English and Arabic). Everything works as expected ...
0
votes
1answer
126 views

Problems storing non-latin characters in mysql database

I am currently running a honeypot to catch forum spammers, and I have been having problems with storing non Latin characters in my database, I have utf8_unicode_ci set on database and table level and ...
0
votes
0answers
22 views

Non Latin character in Eclipse database connection tool

I've just changed to use the new Eclipse JEE and found that has the database connection tool that enables me to run SQL commands right from Eclipse. I love the feature but some of SQLs used in my ...
0
votes
1answer
65 views

Translating non-latin characters from a latin only system

Apologies if this has already been answered previously... We've got an online mail reader (php based) that currently substitutes "�" or the upright rectangle for non-latin based characters in a ...
0
votes
1answer
67 views

how to (a) write non-latin text in phpMyAdmin and (b) show it on a browser using php

I have seen some solutions but I can't seem to understand how to make it work. (a) in phpMyAdmin I can select between these 2 options for hebrew: hebrew_general_ci hebrew_bin after picking one of ...
0
votes
1answer
170 views

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 ...
0
votes
1answer
124 views

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 ...
0
votes
4answers
365 views

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 ...
0
votes
2answers
392 views

word boundary on non latin characters in php

This example works fine: echo preg_replace("/\bI\b/u", 'we', "I can"); // we can This one were russian letters are used does not work even though I use "u" modifier: echo preg_replace("/\bЯ\b/u", ...
0
votes
3answers
318 views

Regex validation on UTF8 / multi byte 'language' characters (inc chinese etc) but not special characters such as {/*

Using PHP / MySQL all encoded up as UTF, we have recently had to start capturing non-Latin characters, such as Chinese etc. We have PHP validation that checks the string length and alpha numeric such ...