Tagged Questions
The cyrillic tag has no wiki summary.
5
votes
7answers
961 views
How can I convert Cyrillic string into English in c#
Is it posible to convert Cyrillic string to English(Latin) in c#?
For example I need to convert "Петролеум" in "Petroleum".
Plus I forgot to mention that if I have Cyrillic string it need to stay like ...
4
votes
2answers
166 views
Unicode characters (Cyrillic) with Intel Fortran
Does anyone have any experience with using Unicode in Fortran? How does one pass Cyrillic characters, and open files with Cyrillic characters in their names?
Details:
I have a Fortran executable ...
4
votes
1answer
314 views
Problem searching my SQLite database which contains cyrillic data
I have a problem searching my SQLite database, which contains data written with cyrillic characters. If the key word is also cyrillic, then everything is ok, but if not, then I can`t get the result in ...
4
votes
4answers
2k views
$_GET encoding problem with cyrillic text
I'm trying this code (on my local web server)
<?php
echo 'the word is / думата е '.$_GET['word'];
?>
but I get corrupted result when enter ?word=проба
the word is / думата е ����
The ...
4
votes
4answers
6k views
Cyrillic characters in PHP's json_encode
I'm trying to encode Cyrillic UTF-8 array to JSON string using php's function json_encode. The sample code looks like this:
<?php
$arr = array(
'едно' => 'първи',
...
3
votes
1answer
63 views
Cyrillic support in svn's svnlook result
I've trying to get list of updated/added/deleted files from SVN by svnlook using:
/usr/bin/svnlook changed -r 77 /var/lib/svn/epsilon/decorhouse
but I got some strange thing:
A ...
3
votes
1answer
183 views
How to detect CTRL+V in javascript with Cyrillic layout?
I detect ctrl+v in keydown event in such a way:
.keydown(function(e){
if ( e.ctrlKey && e.keyCode == 86 ) {
console.log ('ctrl+v!');
}
});
it works fine, when my layout is latin ...
3
votes
1answer
97 views
Validating Cyrilic input in PHP
Is there a way (regular expression?) to check if a string is composed only of Cyrilic alphanumeric characters?
I need to validate an input to be in range of the Cyrillic alphabet, plus numbers, ...
3
votes
1answer
183 views
Java, Archives, Linux & Cyrillic
I try to write an archiver in java, that creates TAR or ZIP archives, with correctly cyrillic file names, then it opened in linux.
In windows I use org.apache.tools.zip, from ant:
...
3
votes
2answers
173 views
How to support Cyrillic in a cocoa touch app (iPhone/iPad)?
I have a simple program on the app store using all standard UIKit controls, now some reviewers are complaining cyrillic and korean is not supported? Are the UIKit controls not using Unicode out of the ...
3
votes
1answer
1k views
How can I convert Cyrillic stored as LATIN1 ( sql ) to true UTF8 Cyrillic with iconv?
I have a SQL dump file consisting of incorrectly stored Cyrillic Russian ( WINDOWS-1251 ) text, example Èðàíñêèå which should properly be displayed as Иранские.
In the past I have successfully ...
2
votes
1answer
38 views
Russian letters in Matlab command window
I'm facing a rather nasty problem. In Matlab, the command S = char(1044) puts Russian letter д into variable S. However disp(S) returns blank symbols, though the content is actually correct:
>> ...
2
votes
3answers
293 views
Cyrillic transliteration in PHP
How to transliterate cyrillic characters into latin letters?
E.g. Главная страница -> Glavnaja stranica
This Transliteration PHP Extension would do this very well, but I can't install it on my ...
2
votes
1answer
453 views
Problem with cyrillic letters in PDF generated with iText in Android
I am tring to generate a PDF in my android application. I use iText and it generates PDF but only letters in english are shown. I found example code for iText working with unicode. I tried this ...
2
votes
1answer
180 views
How to send cyrillic data with indy10 Delphi
When i send some Cyrillic text in the web site that text is displayed with "?????????"....
That is my sending function:
http := TIDHttp.Create(nil);
http.HandleRedirects := true;
http.ReadTimeout := ...
2
votes
1answer
297 views
Flash CS4/AS3: differing behavior between console and textarea for printing UTF-16 characters
trace(escape("д"));
will print "%D0%B4", the correct URL encoding for this character (Cyrillic equivalent of "A").
However, if I were to do..
myTextArea.htmlText += unescape("%D0%B4");
What gets ...
2
votes
7answers
724 views
PHP: case-insensitive preg_replace of a cyrillic string in UTF8
I have a PHP 5.3 script displaying users of my web site and would like to replace a certain Russian city (stored in UTF8 in PostgreSQL 8.4.7 database + CentOS 5.5/64 bits Linux) by its older name (it ...
2
votes
1answer
466 views
Transliteration with Iconv in Ruby
When I'm trying to transliterate cyrillic utf-8 string with
Iconv.iconv('ascii//ignore//translit', 'utf-8', string).to_s
(see questions/1726404/transliteration-in-ruby)
I'm getting everything but ...
2
votes
1answer
173 views
Applescript - Writing Russian to txt file
I am trying to write some Russian text, or Cyrillic text, to a .txt file. I can successfully do so, but when i open the file all that is written in place of the text are a bunch of question marks. I ...
2
votes
1answer
179 views
Create custom MySQL Collation
can you help to create custom mysql collation?
table will contain mix of data in cyrillic and latin characters. some of data will start as a numbers.
i need to have listed (and sorted):
all ...
2
votes
3answers
955 views
Python: Copying files with special characters in path
Hi
is there any possibility in Python 2.5 to copy files having special chars (Japanese chars, cyrillic letters) in their path?
shutil.copy cannot handle this.
here is some example code:
import copy, ...
2
votes
4answers
2k views
How to transliterate Cyrillic to Latin text
I have a method which turns any Latin text (e.g. English, French, German, Polish) into its slug form,
e.g. "Alpha Bravo Charlie" => "alpha-bravo-charlie"
But it can't work for Cyrillic text (e.g. ...
2
votes
2answers
291 views
I18n and Passwords that aren't US-ASCII, Latin1, or Win1252
How do you handle passwords for services when the user enters something that is best represented in Unicode or some other non-Latin character encoding?
Specifically, can you use a Cyrillic password ...
1
vote
1answer
44 views
convert KOI8-R xml node into unicode in c#
I have the following xml:
<root>
<text><![CDATA[ОПЕЛХМЮБЮ ОПЕГ БЗПРЪЫ ЯЕ АЮПЮАЮМ, Б ЙНИРН ЯЕ]]></text>
</root>
I know this text is generated using encoding KOI8-R ...
1
vote
3answers
116 views
UPPER() doesn't work with cyrillic symbols in PostgreSQL 8.2 database
So, i have PostgreSQL 8.2 running on Ubuntu server, database encoding is UTF8. Everything is fine, except one thing: i cannot use upper() function in sql queries for cyrillic symbols. Well, I can use ...
1
vote
1answer
74 views
Encoding issue while reading Paradox database using Java
I have Java application (using JDK 1.7) which is reading Paradox files (*.db). It works well with Latin characters. I am trying to make this application to display Cyrillic characters correctly, ...
1
vote
1answer
121 views
Can't copy russian(cyrilic or Unicode) symbols using SendInput(Edit1.Text);
procedure SendText(ds:string);
var
TI: TInput;
KI: TKeybdInput;
i: integer;
begin
TI.Itype := INPUT_KEYBOARD;
for i := 1 to Length(ds) do
begin
KI.wVk := Ord(UpCase(ds[i]));
...
1
vote
0answers
25 views
Cyrillic Letters in PDF Metadata Created by FO.NET
Has anyone succeeded in showing cyrillic letters in the metadata of a pdf file that is generated by FO.NET? I tried the following code, but the metadata of the generated pdf displays only "Title: ...
1
vote
1answer
46 views
How to change the path where Git creates ssh file while “remote add origin …”?
Good times!
Please, hint me this moment - I use the Windows account with cyrillic account-name. When I try to add my local git repository to github.com, I get the mistake "Could not create directory ...
1
vote
1answer
221 views
Python encoding problem. Can't open url containing cyrillic symbols
I have the fowling url "mysite.com/\u0422\u0435\u043A\u0441\u0442 \u043D\u0430 \u043A\u0438\u0440\u0438\u043B\u0438\u0446\u0430" ("mysite.com/Текст на кирилица"). I want to open this url using ...
1
vote
1answer
277 views
Not inserting right Cyrillic entry into MySQL database from Android application
I am currently developing an Android app that is using a remote MySQL database to write/read bookmarked by the user locations on the map. I acquire the address of a location via Reverse GeoLocation ...
1
vote
1answer
100 views
Rails Cannot Parameterize Cyrillic Characters (Russian)
Our application automatically generates page URLs using a parameterized version of the page name. For example:
http://www.domainname.com/this-is-the-page-name
Simple. Works fine, except when the ...
1
vote
1answer
323 views
php json_encode with cyrillic characters
Not to reinvent the wheel I refer to already existing Cyrillic characters in PHP's json_encode.
The question is: what are those characters, what do they mean: \u0435, \u0434 and so on? I guess ...
1
vote
1answer
105 views
Cyrillic suddenly turning into question marks
I've made an application which shows cyrillic text, but all of a sudden all the cyrillic turned into question mark signs inside a squared box. This has nothing to do with my script, as I checked my ...
1
vote
1answer
185 views
How make support cyrillic letters in JavaCC?
Can I make cyrillic tokens for *.jjt file?
For exampe tokens are given in jjt:
TOKEN : /* LITERALS */
{
< TEST: "тест" >
| < DEVELOP: "разработка" >
}
but the tokens in jj file ...
1
vote
3answers
538 views
Problem with python xml.dom.minidom.parse and utf-8 xml file with cyrillic
sorry for my english :)
I have a problem with parsing xml file in utf-8 with cyrillic text in content
some rows from xml:
............
<programme start="20110405022000 +0300"
...
1
vote
0answers
168 views
Builder c++ Rave Reports encoding problem with cyrillic
When i try save rave project in pdf\html file, have incorrect encoding.
When choose format and press SAVE, it ussually save in iso-8859-1 code.
But i need cp1251 (cyrillic).
For example ...
1
vote
1answer
218 views
Ruby: save file with cyrillic name
How to correct save file with cyrillics name?
Now file name look like this "Максим Р—РёРЅСЏРєРѕРІ feat. Indigo - You And Me Only". Correct name "Максим Зиняков feat. Indigo - You And Me Only".
...
1
vote
3answers
465 views
Using json_decode on a JSON feed containing Cyrillic characters
I'm trying to decode a JSON feed containing some Cyrillic characters. Not all of the characters in the feed is Cyrillic though. I'm using json_decode which works fine for anything else, but return ...
1
vote
3answers
571 views
How do I get Cyrillic in the output, Python?
how do I get Cyrillic instead of u'...
the code is like this
def openfile(filename):
with codecs.open(filename, encoding="utf-8") as F:
raw = F.read()
do stuff...
print some_text
...
1
vote
2answers
379 views
Problem with cyrillic characters in Ruby on Rails
In my rails app I work a lot with cyrillic characters. Thats no problem, I store them in the db, I can display it in html.
But I have a problem exporting them in a plain txt file. A string like ...
1
vote
1answer
331 views
MySQL SELECT problem with encoding (cyrillic, probably)
I'm working with project on exporting data from text files to mysql database
Text files contain both latin and cyrillic alphabets.
Here is the bug:
select * from cues where data="ГЭС";
...
1
vote
1answer
146 views
Cyrillic , AJAX and database
Database - MySQL.
I save form data in the database with native AJAX.
In file 1 (where is the form and AJAX) I have
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
and
...
1
vote
2answers
358 views
Cyrillic data in MS SQL
everything was working fine while the database of my asp.net mvc 2 site was in the app_data folder , after i transfered it to sqlserver express all the Cyrillic data i added after that appears in ...
1
vote
1answer
57 views
How to prepare Cyrilic and other variables for storing into MySql DB? (PHP)
How to prepare Cyrilic and other variables for storing into MySql DB? (PHP)
So I need realy simple way to prepare recived from browser $_GET[string] variables for storing into DB.
How to do such ...
0
votes
1answer
103 views
PHP iconv greek/cyrillic transliteration does not work
i have the following test code:
setlocale(LC_ALL, 'en_US.UTF8');
function t($text)
{
echo "$text\n";
echo "encoding: ", mb_detect_encoding($text), "\n";
// transliterate
$text = ...
0
votes
1answer
66 views
PHP and antiword are not correctly parsing cyrillic text
I am trying to parse an MS Office 2003 document using antiword on my Linux server. But it will not parse cyrillic text correctly.
It returns something like this:
??? ???? ???????????
Does anybody ...
0
votes
0answers
20 views
DB Collation required for Intersystems Cache (1280 or 1251
Guys i am looking for collation Latin Cyrillic may be having code 1280 or 1251
I am asking this since one of the DB Systems i am using is not ready to open the file and read the contents since the ...
0
votes
0answers
49 views
Can't setup utf-8… Saved text is displayed differently in different text editors. Plus, text is detected as utf-8, but rectangles are displayed
I'm struggling with a proper displaying of cyrillic letters on the web-page as utf-8. Here is a magic...
I use Wampserver.... I excluded from index.php any css, js, php (because I thought it could be ...
0
votes
0answers
60 views
Russian text appears unreadable in Android
I'm trying to display Russian text in normal Android dialogs, menus, etc but it appears garbled and unreadable.
Does the default Android font support these characters? What should I do in order to ...