Tagged Questions

5
votes
4answers
137 views

convert decimal mark

I have a csv file with data reading that I want to read into Python. I get lists that contain strings like "2,5". Now doing float("2,5") does not work, because it has the wrong decimal mark. How do ...
4
votes
6answers
3k views

In Java, why does the decimal separator follow the Locale's language, not its country, and, more importantly, how does one override it?

I'm working on an international project and have observed that, in Java, the choice of the decimal separator is based on the Locale's language, not its country. For example: DecimalFormat ...
2
votes
1answer
405 views

Why did the digit grouping and decimal separator change for en-ZA from .NET 3.5 to .NET 4.0?

We have code in our system to format numbers and currency according to the regional settings selected by the user. One of our users has selected en-ZA and noticed that the digit grouping and decimal ...
2
votes
3answers
573 views

double string conversion and locale

A common international issue is the conversion of double values represented in strings. These stuff is found in a lot of areas. Starting with csv files which are either called comma separated or ...
1
vote
3answers
70 views

How to change decimal separator cleanly in outputs in mysql - php combo

I was trying to export database query to CSV and the need arised to use different decimal comma. It seems impossible to change the decimal comma in MySQL, so I tried in PHP: setlocale(LC_NUMERIC, ...
0
votes
1answer
132 views

Change decimal separator in MySQL

Is it possible to change the decimal comma from "." (dot) to other character (comma) in MySQL output? I don't want to use functions like FORMAT, I just want to use all the queries I normaly use ...