turkish Questions

5

Solved

It looks like postgres upper/lower function does not handle select characters in Turkish character set. select upper('Aaı'), lower('Aaİ') from mytable; returns : AAı, aaİ instead of : AAI, ...
Carrissa asked 23/10, 2012 at 11:52

4

Solved

I want to validate QLineEdit's text with a regular expression. It should allow characters from a to z plus A to Z plus Turkish characters(ğüşöçİĞÜŞÖÇ) plus numbers from 0 to 9. I googled about my p...
Perspicacious asked 5/6, 2013 at 7:12

4

Solved

I have not found a good description on how to handle this problem on windows so I am doing it here. There are two letters in Turkish ı(I) and i (İ) which are incorrectly handled by python. >&...
Risteau asked 31/10, 2013 at 9:49

3

Solved

I want to convert a ASP.NET web page to pdf using ITextSharp. I did write some code but I can not make it show the Turkish Characters. Can anyone help me? Here is the code: using System; using Sy...
Hydride asked 26/10, 2010 at 11:22

4

Solved

Is there any free TTS (text-to-speech) service for Android in Turkish? I've not found anything useful in google.
Parttime asked 16/2, 2012 at 12:28

2

I am working with multilingual text data, among others with Russian using the Cyrillic alphabet and Turkish. I basically have to compare the words in two files my_file and check_file and if the wor...
Dekeles asked 2/5, 2018 at 12:50

3

Solved

I'd like to use the JavaScript toLocaleUpperCase() method to make sure that the capitalization works correctly for the Turkish language. I cannot be sure, however, that Turkish will be set as the u...
Jehius asked 27/1, 2013 at 14:6

4

I try to create new sentence from different list items. Its giving error when I print it by unicode. I can print it normally (without unicode). When I try to post it to the web site its rasin...
Thermometry asked 11/11, 2014 at 9:30

1

Solved

I am trying to convert some words that contains Turkish characters to lowercase. Reading words from a file which is utf-8 encoded: with open(filepath,'r', encoding='utf8') as f: text=f.read().lo...
Thapsus asked 19/3, 2017 at 14:6

4

Solved

When searching the text Çınaraltı Café for the text Ci using the code NSStringCompareOptions options = NSCaseInsensitiveSearch | NSDiacriticInsensitiveSearch | NSWidthInsensitiveSearch; NSLocal...
Sonyasoo asked 8/7, 2013 at 22:11

1

Solved

I am having trouble with Greek and Turkish when using toUpperCase() with the default locale or more interestingly the two argument Locale constructor. Issue happens on Galaxy Tab S2 Android 5.0.2 ...
Bhutan asked 25/8, 2016 at 16:46

2

In the code of some libraries (e.g. AngularJS, the link leads to the specific lines in the code), I can see that custom case-conversion functions are used instead of the standard ones. It's justifi...
Disaccord asked 1/3, 2015 at 9:36

1

Solved

In Java 6, System.out.println(String.valueOf('\u0130').toLowerCase()); prints i (u0069), but in Java 7 it prints i with double dots (u0069 u0307). I understand it is a Turkish character, but ho...
Tedtedd asked 7/5, 2014 at 17:20

3

Solved

I'm using Jsoup to get html from web sites. I'm using String url="http://www.example.com"; Document doc=Jsoup.connect(url).get(); this code to get html. But when I use some Turkish letters in t...
Cad asked 15/1, 2014 at 8:44

2

Solved

We are having problems with text that is encoded in some different ways but kept in a single column in a table. Long story. On MySQL, I can do "select hex(str) from table where" and I see the bytes...
Eversole asked 9/9, 2013 at 15:39

4

Solved

I am using a lib which has an enum type with consts like these; Type.SHORT Type.LONG Type.FLOAT Type.STRING While I am debugging in Eclipse, I got an error: No enum const class Type.STRİNG As...
Ledesma asked 11/9, 2011 at 22:27

3

Solved

So Turkey recently decided to create a new sign for their lira: Unicode 6.2 (released September 2012) added this to its repertoire as U+20BA ₺ TURKISH LIRA SIGN, and I've been asked to start usi...
Firmament asked 2/1, 2013 at 6:3

4

Solved

I have a javascript case conversion problem which I cannot solve due to non-English letters. My main concern is the Turkish alphabet. What I need to do is this: hello world => Hello World HELLO ...
Expositor asked 13/8, 2012 at 11:40

3

Solved

i'm having troubles displaying turkish characters, they are appearing as the little question mark with the diamond in the background in html. How can I use iconv to fix this? Since I think thats t...
Retain asked 25/2, 2011 at 21:33

4

I'm trying to print prices in Turkish Liras (ISO 4217 currency code TRY) with Java. When I do Currency curr = Currency.getInstance("TRY"); Locale trLocale = new Locale("tr", "TR"); System.out.pri...
Chamfron asked 21/5, 2009 at 17:55
1

© 2022 - 2025 — McMap. All rights reserved.