Questions tagged [latin]
149 questions
1
vote
0 answers
Transliterate Thai to Latin using RTGS in ICU Project
I am using the ICU Project to perform some transliterations, but I am finding some issues while transliterating from Thai to Latin. I would need to use the RTGS (https://en.wikipedia.org/wiki/Royal_Thai_General_System_of_Transcription) standard, but…

aperezra
- 165
- 2
- 7
1
vote
1 answer
SQL converting column from Latin1 to UTF8
I am trying to convert a specific column in a table on my DB from latin1 character set with collation latin1_swedish_ci to utf8 with collation utf8_unicode_ci.
COLUMN: description, type: longtext, default not null
I tried the following commands on…

tracyfan_1
- 15
- 1
- 5
1
vote
2 answers
Latin letter regular expression in Java
I need a regular expression in Java that matches Latin letters and some special characters.
I would not like to list the characters.
Examples:
Should match the following upper case and lower case: äöü ç łąćżźńóę
Should not match: € £
I tried…

taliesinq
- 33
- 6
1
vote
1 answer
Pig Latin translator - reverse translation error
So I have full functionality of a program that translates from English into Pig Latin. I have about 80% functionality on the reverse translation.
I have two issues:
First, when translating back to English from Pig Latin, it adds some gibberish at…

matthew g
- 11
- 5
1
vote
1 answer
CreateFile fails (ERROR_FILE_NOT_FOUND) when file has latin characters
I'm trying to open files in C, but I'm getting problems when the file has latin characters in Windows.
This code
hFile = CreateFileW(ws, // file to be opened
GENERIC_READ, // open for reading
FILE_SHARE_READ, // share for reading
NULL, // default…

Luis Herranz
- 358
- 3
- 12
1
vote
1 answer
Zend database query result converts column values to null
I am using the next instructions to get some registers from my Database.
Create the needed models (from the params module):
$obj_paramtype_model = new Params_Model_DbTable_Paramtype();
$obj_param_model = new…

David Zapata
- 35
- 7
1
vote
2 answers
How to find last 7 days records using pig latin?
I am a beginner to Pig latin. I have a requirement to find the last 7 days records from the csv with contains last 4 years of data.
Can anyone help me to understand this.

user3528221
- 11
- 3
1
vote
2 answers
Autocomplete not working with some mobile browsers when using non-latin characters
I use jQuery 1.7.2 with jQuery UI autocomplete 1.8.22 and it works fine with all pc based browsers
On mobile browsers other than Chrome, when the search terms are using non-latin characters (let's say greek) other mobile browsers such as Firefox and…

Teodoros
- 459
- 4
- 14
1
vote
1 answer
Deleting all non-Latin characters from string with Cyrillic characters
I have some problem with regular expression for some string cleaning...
I want:
1) if first char is Cyrillic => remove all chars until first number or latin char in string
2) if first char is Latin => save char until first Cyrillic char in…
user826822
1
vote
2 answers
Extract first line of CSV file in Pig
I have several CSV files and the header is always the first line in the file. What's the best way to get that line out of the CSV file as a string in Pig? Preprocessing with sed, awk etc is not an option.
I've tried loading the file with regular…

Uppsilon
- 23
- 1
- 7
1
vote
2 answers
Non latin symbols in url, php
If use in url, non allowed character, for example space:
link
and click this link, in browser addres bar I see mysite.com/pa%20ge
okay, and if now I use georgian, (or for example russian) alphabet symbols:

Oto Shavadze
- 40,603
- 55
- 152
- 236
1
vote
2 answers
google webfont latin big chars
i need help with google webfonts.
I am using Ubuntu Condensed, and all latin chars work fine on google webfonts website, but when i use it to my website, small letters žšć are big.
Using:

Mirza Delic
- 4,119
- 12
- 55
- 86
0
votes
2 answers
MySQL Latin characters in legacy db
Hi I have inherited a db which I need to use the data from. Unfortunately some of the text is spanish and has some obvious encoding issues. For example this is a typical string stored in a text field:
Clara introducción a través del transporte de…

Darwin Tech
- 18,449
- 38
- 112
- 187
0
votes
3 answers
How to capitalize polish special letters in C++?
I've got a string I want to capitalize, but it might contain polish special letters (ą, ć, ę, ł, ń, ó, ś, ż, ź). The function transform(string.begin(), string.end(), string.begin(), ::toupper); only capitalizes the latin alphabet, so I wrote a…

Greg
- 71
- 6
0
votes
0 answers
Mix letters (russian + latin) in a specific bibliographic reference on a mainly latin-font, IEEEtrans style, Latex article
I am writing a paper for a IEEE conference using IEEEtrans style. All the document is in plain english, but I have a single reference in bibliography whose title has a mix of characters from the Cyrillic and Latin alphabet. I struggled two days to…