Questions tagged [turkish]

This tag refers to the Turkish language. Use it on questions dealing with text or data written in this language.

The Turkish language, spoken by 80 million people in and around the Republic of Turkey, is the most commonly spoken of the Turkic languages, which span from southeast Europe to northeast Asia.

To read further, here is a Wikipedia article on the Turkish language.

177 questions
3
votes
1 answer

Available locale display country when "inLocale" is set to Turkish (JDK 1.6.0_29)?

According to the javadoc for Locale.getDisplayLanguage(Locale inLocale), Returns a name for the locale's country that is appropriate for display to the user. If possible, the name returned will be localized according to inLocale. For example,…
mre
  • 43,520
  • 33
  • 120
  • 170
3
votes
0 answers

Android Studio textAllCaps turning letter "i" to caps in my native language as "İ". Do you know a way to avoid this?

I'm trying to learn Android Studio (v. 3.6.3). I am setting the attribute textAllCaps to true in the XML code source forTextView, as follows: "android:text="@string/quantity" "android:textAllCaps="true" However, on the screen, the word "Quantity"…
Lis
  • 39
  • 4
3
votes
2 answers

How to uppercase Turkish "i"?

In Turkish, there are two i Dotless: ı, I Dotted: i, İ PROBLEM: Every time I uppercase an i, I get an I. I want to get an İ (only in Turkish) when I uppercase an i, and an I when I uppercase an ı. I have a function to do it @objc public static…
Sergio
  • 1,610
  • 14
  • 28
3
votes
1 answer

Excel to JSON (with VBA) Turkish character issue

I'm converting my Excel table to Json with VBA. But, when I look at the output Json file, the turkish characters don't look smooth. For example, in Excel table, "HAYRETTIN YILMAZ" in Json, HAYRETTÝN YILMAZ in Excel table, "HÜSEYİN DURAK" in Json,…
John Valdetine
  • 416
  • 2
  • 9
  • 26
3
votes
3 answers

JSP Turkish Character Problem

I have a jsp page running under jboss 4.2.2 server. The structure for the page is something like this: include head ( head is written on another page, like masterpage in aspx. ) (body ( where the problem appears )) include foot ( foot is also…
Olgun Kaya
  • 2,519
  • 4
  • 32
  • 46
3
votes
0 answers

MongoDB text index diacritic insensitivity issue with Turkish

I have a database consisting of documents with Turkish characters ("ı, ö, ğ, ü, ö, ş, ç") with text index in Mongo 3.6. I have created my index to support the Turkish language with, db.myCollection.createIndex( { myField: "text" }, {…
3
votes
1 answer

NodeJS REST turkish character, Socket hang up

My REST service is the following: const express = require('express'), app = express(); ... app.get('/turkish-escape/:id', function(req, res) { console.log("converting turkish special characters:"); console.log("\u011f…
nufuk
  • 41
  • 5
3
votes
2 answers

My sanitizing $_POST[] function also sanitizes Turkish characters

I've found a function on web to sanitize user input data and used it for creating an alternative to $_POST[] method as post() . However, it seems that this function also sanitizes UTF-8 characters such as ç,ş,ö,ı,İ,Ö,ğ, converting them into strings…
Ahmet
  • 115
  • 11
3
votes
2 answers

How to find all variations (accented, etc) of a searched string in MySQL table?

I have a big MySQL, InnoDB table which holds data in utf8mb4_unicode_ci. I have records from almost every languages those are based on latin alphabet. I am easily able to search words with accented characters and find results with different…
frankish
  • 6,738
  • 9
  • 49
  • 100
3
votes
3 answers

PHP - bad encoded turkish characters in MySQL database

I am working on a turkish website, which has stored many malformed turkish characters in a MySQL database, like: - ş as þ - ı as ý - ğ as ð - Ý as İ i can not change the data in the database, because the database are updated daily and the new…
Doğan Uçar
  • 166
  • 3
  • 15
3
votes
0 answers

Turkish i and jQueryUI autocomplete

I try to use jQueryUI autocomplete with a list of turkish regions but I have some troubles. I've already searched on stack for an answer and the only solutions that I've found are "don't forget the lang attribute" and "don't forget utf-8" but…
Mehdi Brillaud
  • 1,846
  • 2
  • 13
  • 22
3
votes
4 answers

How I can use Java Regex for Turkish characters to UTF-8

I'm trying to do a regex operations in Java. But when I search in the Turkish text , I'm having trouble . For example; Search Text = "Ahmet Yıldırım" or "Esin AYDEMİR" //The e-mail stated in part(Ex: yildirim@example.com) , trying to look in…
Junior Develepor
  • 192
  • 2
  • 18
3
votes
0 answers

liquibase generates wrong uppercase characters when generating the sql

Im working with jhipster and it uses liquibase to manage tables. But when it generates the sql query it messes up the characters. it turns "int" to "İNT" not "INT" and other "i" characters to "İ" (turkish character for uppercase i) so postgresql…
3
votes
3 answers

Turkish characters in python

I am playing around with the Twitter API, but I have several questions regarding the encoding of Turkish characters. Here is the code I'm working with: # -*- coding: cp1254 -*- import sys import csv import tweepy import locale import…
user3303613
3
votes
3 answers

Javascript regex insensitive turkish character issue

i'm using regex for filtering some contents. var word = new RegExp(filterWord,"gi");// "gi" means Global and insensitive content = content.replace(word, "");//removes "word" from content This code works properly but when regex get uppercase "İ" it…
Erdi
  • 1,824
  • 3
  • 21
  • 31
1 2
3
11 12