Questions tagged [latin]
149 questions
0
votes
1 answer
quering mysql via command line shows column values as?
My table Collation is Latin but the columns are utf8 unicode... and i can store text in any language without any problems
however, when i go into console to check out some stuff i see the non-latin text as ????? but on the website they appear…

stergosz
- 5,754
- 13
- 62
- 133
0
votes
1 answer
PHP Form - Email sent doesn't support characters
I have a contact page (contact.php) that sends a form (formsend.php) when people fill in the contact details.
The contact.php has:
Contact.php page is fine, displays…
user1220518
-1
votes
1 answer
Pig Latin Parameters in Store Command
I have developed a Pig Latin that accepts a parameter $colour.
I have loaded in my dataset and successfully filtered it based on this parameter.
Now I'm trying to store the output, I am trying to use the parameter as a folder in the store command,…

PetyrBaelish
- 39
- 4
-1
votes
1 answer
accented characters in String
I have the following characters to be identified as special characters in SQL :
#
¢
£
¥
$
€
Ą
Ę
Ż
Ź
Ć
Ó
α
ß
Γ
δ
ε
Θ
π
µ
Σ
σ
τ
Φ
φ
Ω
Ä
Ë
Ï
Ü
only these characters should be identified as special characters.
Can anyone help me out
Thanks,
naveen
-1
votes
1 answer
Convert Latin to English encoding in C#
I am trying to convert the character ù to a in English.
example code:
Encoding latinEncoding = Encoding.GetEncoding("Windows-1252");
Encoding ascii = Encoding.ASCII;
byte[] latinBytes = ascii.GetBytes(txt);
string asciiSring =…

zak_p
- 43
- 1
- 10
-1
votes
1 answer
Java Pig Latin Converter is spitting out an extra word
I'm working on a project for my Programming Applications course with WGU. I've decided to adapt a python-based pig latin converter from the previous course. I've almost got it done, but when I run the program, I get an extra word. For example, if I…

phdillard
- 11
-1
votes
1 answer
Pig Script STRSPLIT
My column has first name and last name separated by SPACE. I want to use pig function to split into 2 different columns. I think of STRSPLIT function but I don't know how to use it.
Could anyone help me on this simple question?

Dhyaan
- 1
- 1
- 2
-1
votes
2 answers
How do people who don't use the latin alphabet use the internet?
I have a school project about how people who don't use the latin alphabet use the internet (like russians or chinese). How do they enter urls or e-mail adresses, and how do they write HTML without a latin keyboard?

The Programmer
- 83
- 1
- 1
- 8
-1
votes
2 answers
How are latin based characters seen?
I am going to write a simple console app in C# that replaces all Latin based characters with their respectively defined replacedment (like Å (ALT+143) becomes AA).
I was wondering how it is viewed in C#. Would it be seen as the string "\uC5" or…

dalawh
- 886
- 8
- 15
- 37
-1
votes
2 answers
Insert php variable with latin characters into mysql db
I'm pretty sure, a common problem but am looking for the best practice solution.
I have a legacy database, for which I have written a script to migrate the data.
In my script I have the following:
$select = $dbh->query("SELECT CollectionID,…

Darwin Tech
- 18,449
- 38
- 112
- 187
-2
votes
2 answers
Latin Character Inbetween String
I have a program to read in a file which contain latin words such as "\xed". These latin words can appear anywhere in between any line, as such I have program parsing these character. Is there any library that can do so?

chj
- 91
- 9
-2
votes
1 answer
Get emp record in pig
EMP_ID PRD_NO PRD_DATE PRD_TOTAL PRD_NORM
IND235 00020 28/Mar/2015 02:00:50 11 60.00
IND235 00018 27/Mar/2015 03:10:40 7 60.00
IND235 00019 28/Mar/2015 04:00:54 3 60.00
IND235 00020 27/Mar/2015 05:00:51 …

Parth
- 1
- 1
-3
votes
1 answer
Python3 Creating basic functions - Remove specific character strings/translating
I am playing around with python3 in idle and after discovering what Pig Latin is I am trying to write a couple functions and am confused about where to start/what python specific words/functions I should be using.
(i) 1 parameter -I am trying to…

azollner
- 1
-3
votes
1 answer
How can I fix this Pig Latin Translator?
import java.util.Scanner;
import java.util.Arrays;
public class PigLatin
{
public static void main (String[] args) {
System.out.println("Translate or Reverse");
Scanner choose = new Scanner(System.in);
String choice =…

Dung Hoang
- 1
- 1