Questions tagged [latin]
149 questions
0
votes
0 answers
php shell_exec, in windows with Ñ letter ( latin)
Im tryng to parse latin caracter, the path of a folder to ork arround it, creating files, deleting folders...
the path is:
c:\user\CAÑIZO
and when try to get it from shwll_Exec
$path = shell_exec("pwd");
echo $path;
this is my…

Álvaro Touzón
- 1,247
- 1
- 8
- 21
0
votes
1 answer
Unable to split mix latin & arabic string from a file in android
Need to parse this file (mixed latin & arabic):
1|حِيمِ
2|الَمِينَ
The file was saved as UTF8 in notepad++, and put in android asset folder.
Expected result: for line1, the entries are "1" and "حِيمِ" (split by "|").
AssetManager manager =…

Idn
- 1
- 1
0
votes
2 answers
Modx SimpleSearch: cyrillic not found
Description of Problem:
There is a site on the Revo 2.4.2. Babel Installed with three contexts (Ru, Ua, En). Installed SimpleSearch 1.9.2. The problem is the inability to look cyrillic word (nothing found). Latin search is correct. Everywhere set…

Roman Sobol
- 85
- 1
- 7
0
votes
2 answers
VK API - return city names in latin
I am using VK API to get list of cities in specific country. Does anyone know how to show Russian cities (which are in Cyrilic) in Latin?
Example of JSON…

minton
- 37
- 2
- 8
0
votes
1 answer
IsEmpty not working as expected in Pig
I have a relation J2, which looks like (Popp,{(100)}) (Urman,{(100)}) (Sciarra,{(100)}) (Chen,{(100)}) (Faviet,{(100)}) (Gietz,{()}) (Higgins,{()}) (LAST_NAME,{()}) (Grant,{()}).... i have to test whether the bag is empty or not, so tried :S =…

pam18
- 33
- 2
0
votes
2 answers
Getting text with accented characters using Python and Selenium
I made a scraping script with python and selenium. It scrapes data from a Spanish language website:
for i, line in enumerate(browser.find_elements_by_xpath(xpath)):
tds = line.find_elements_by_tag_name('td') # takes tags from line
…

Alexander Yudkin
- 462
- 3
- 12
0
votes
2 answers
How to suppress unicode characters in QString or convert to latin1
Trying to insert some data from CSV to Firebird table in Qt. DB is in ASCII. When inserting some strings with non-ascii symbols get error:
Cannot transliterate character between character sets
Setting…

Aleksey Kontsevich
- 4,671
- 4
- 46
- 101
0
votes
4 answers
In python, can I stop an input loop without using the break command?
I'm desperate here. Trying to do a program for one of my classes and having so much trouble with it. I added an input loop because part of the requirements is that the user has to be able to enter as many lines of code as they want. Issue is, now I…

Teresa
- 1
- 1
- 1
0
votes
0 answers
How to use jQuery Validation plugin option RangeWords to validate Latin chars (or especial chars)
folks.
I'm trying to validate a form with jQuery Validate plugin (http://jqueryvalidation.org/) with rangeWords option. My problem is that I need to use comma to separate the words in the form input fields and I need to allow special chars/latin…

Renato Pirei
- 60
- 9
0
votes
2 answers
Apache Hadoop pig SPLIT not working. Giving Error 1200
Structure of bag:
emp = LOAD '...../emp.csv' using PigStorage(',') AS
(ename:chararray,id:int,job:chararray,sal:double)
This bag contains details of employees. I want to split the data based on job.
Bag = split emp into mngr if job ==…

Sanjeev
- 17
- 1
- 6
0
votes
2 answers
PYTHON 3: Pig Latin, again, but hear me out
Before you say there are other threads, trust me I have read them all and I have found them not helpful because I implimented my code different, and I have been doing it myself from the start. Not looking for a freebie but some actual help.
My…

11thZone
- 71
- 3
- 10
0
votes
2 answers
Operators in PIG Latin
I have two values in a PIG Latin script, what should I do to use them mathematically, like if I had two variables
A=(5)
B=(4)
How can I do A+B or something like that ?

Bafla13
- 132
- 2
- 11
0
votes
0 answers
Pig script new record
I am working on following mail data in a file.. (data source:infochimps)
Message-ID: <33025919.1075857594206.JavaMail.evans@thyme>
Date: Wed, 13 Dec 2000 13:09:00 -0800 (PST)
From: john.arnold@enron.com
To: slafontaine@globalp.com
Subject:…

priyanka
- 305
- 1
- 3
- 18
0
votes
1 answer
Is it possible to GROUP BY treating certain characters the same?
I have tables with data as such:
forename surname
John O'Neil
Aaron O Neil
Peter O-Neil
Mary Tollmache-Tollmache
Beatrice Tollmache Tollmache
All the data has been sanatised so they only…

Kohjah Breese
- 4,008
- 6
- 32
- 48
0
votes
3 answers
URL encoding for latin characters in Java
I'm trying to read in an image URL. As mentioned in the java documentation, I tried converting the URL to URI by
String imageURL = "http://www.shefinds.com/files/Christian-Louboutin-Décolleté-100-pumps.jpg";
URL url = new URL(imageURL);
url = new…

smahesh
- 663
- 1
- 11
- 21