Questions tagged [latin]
149 questions
4
votes
3 answers
Convert characters to UTF8 in MySQL (é to é)
I've got a MySQL problem. My whole website except my database is in UTF8. I just recently tried to convert it to UTF8 with all kind of commands, but the main issue is still there:
the accents don't work. Instead of é, I've got é. Same for è, there…

Yannick Bloem
- 147
- 2
- 4
- 12
4
votes
3 answers
Latin Regex with symbols
I need split a text and get only words, numbers and hyphenated composed-words. I need to get latin words also, then I used \p{L}, which gives me é, ú ü ã, and so forth. The example is:
String myText = "Some latin text with symbols, ? 987 (A la…

Manoel Merc
- 43
- 1
- 1
- 3
4
votes
2 answers
Converting a latin string to unicode in python
I am working o scrapy, I scraped some sites and stored the items from the scraped page in to json files, but some of them are containing the following format.
l = ["Holding it Together",
"Fowler RV Trip",
"S\u00e9n\u00e9gal - Mali -…

Shiva Krishna Bavandla
- 25,548
- 75
- 193
- 313
3
votes
1 answer
Concat arabic and english string with string.Format()
Have some trouble with concat two string.
return string.Format("{0}{1}{2}",
IdWithSubType,
ExtraInfo.Any(info => info.InfoType == UniExtraInfoType.Alias)
? string.Format(" ({0})", string.Join(",",…

Stanislav Muryndin
- 57
- 2
- 10
3
votes
0 answers
Issue with converting text to Latin
Need to convert below string from UTF-8 to Latin (ISO-8859-1)
Häger
The correct output should be: Häger
I have tried this by PHP and MySQL but did not get the desired result.
PHP:

Rohit Goyani
- 1,246
- 11
- 26
3
votes
1 answer
Extremely inefficient and unelegant code
I have a problem with my Latin translator which I am building for a school project. I have created a grammar for Latin/English sentences. I have created a predicate (possiblesentence(Latin,English).) which can translate a Latin sentence in the right…

user2850249
- 169
- 9
3
votes
1 answer
FileNotFoundException for URL containing latin characters
I'm having trouble loading pictures which contain Latin characters like: č, ć, š, đ, ž.
The code works flawlessly for other links, but when it gets to this or any other containing Latin character:
InputStream input = null;
try {
…

Filip V.
- 157
- 1
- 10
3
votes
2 answers
pig latin relaxed equals == with null?
in a relation X with only 1 row
X.A=null
X.B= "blahblah"
now I want to do:
Y = FILTER X BY A != B ;
I intended to say that since A is null and B is not, the condition should be true.
but the actual result is that Y is empty, and the condition…

teddy teddy
- 3,025
- 6
- 31
- 48
2
votes
3 answers
.NET 3.5 C# StreamReader Reading ISO-8859-1 Characters Incorrectly
In summary I retrieve a HTTP Web Response containing JSON formatted data with unicode characters such as "\u00c3\u00b1" which should translate to "ñ". Instead these characters are converted to "ñ" by the JSON parser I am using. The behavior I'm…

Ian G
- 498
- 3
- 16
2
votes
0 answers
angular material mat-card not displaying latin alphabet characters correctly
I am using mat-card in angular material to display some letters of the latin alphabet such as ḍ, ḥ, ṣ, etc. These are all letters with a dot underneath.
Inside a mat-card only, a space is being added after the letter, as in:
aḍ ar (instead of…

omar
- 401
- 1
- 7
- 26
2
votes
1 answer
Large corpus of Hindi text in Roman script
Where can I find such a corpus? I require this to build a language detector between Hindi and English at the token (word) level.
For instance, something like the Hindi Wikipedia in the Roman alphabet would be quite useful. Or short stories, social…

piedpiper
- 1,222
- 3
- 14
- 27
2
votes
1 answer
Reducing font glyphs to create webfonts with only latin characters?
How can I take a font file and remove all glyphs that are not standard latin characters (A-Z, 0-9, special characters, etc)?
For example I downloaded the FreeSans font from GNU FreeFont, but it contains thousands of characters from all languages. I…

Sosa
- 814
- 1
- 9
- 20
2
votes
1 answer
PostgreSQL regex check start with Latin and alpha character
I have to check String start with an alpha in PostgreSQL. I used this:
SELECT string ~ '^([a-z]|[A-Z])'
But it doesn't work with strings start with a Latin character. For ex: ücp.
In Java, I use this regex:
^([\pL]).*
I tried it with…

Anh Phạm
- 71
- 5
2
votes
2 answers
latin characters showing in some parts of the page and not others
the page in question is Apple Amor
You can see that in the footer the spanish vowels seem to be showing properly , but in the slide down bar(header) they get messed up.
Any ideas why ?

Pablo
- 51
- 1
2
votes
1 answer
Pig Latin - foreach generate method does not work without the first field
I am facing a strange problem with pig generate function where if I do not use the first field the data generated seems to be wrong. Is this the expected behaviour ?
a = load '/input/temp2.txt' using PigStorage(' ','-tagFile') as …

enigma
- 89
- 6