1
vote
3answers
22 views

Ignoring letters when parsing a double from a line in a file

long time lurker, first time poster. I am trying to import some data from a file line by line. One specific line I was to read from may or may not have "kB" (kiloBytes) at the end and I want to parse ...
3
votes
1answer
63 views

How to identify BigDecimal from Double in Java

I'm writing a financial application where i'm getting a value as string and need to check if the value is can be fit into double or BigDecimal without data loss. What will be the best way to identify ...
1
vote
6answers
93 views

Parse a string into two double

I have a string that is in the format #########s###.## where #### is just a few numbers, and the second piece is usually a decimal, but not always. I need to break the two number pieces apart, and ...
1
vote
3answers
74 views

Java String Parsing Error

Hey can someone help me with my error i am getting. I am taking apart lines out of my file and check wether they are low med or high. If the string is blank i want to read the next line in the file. ...
3
votes
3answers
215 views

String “0.080” to double makes 80.00 [duplicate]

I have this problem in c#, I want to convert a string to double. textBoxKostOnderhoud.Text = "0.08"; kost.OnderhoudKost = double.Parse(textBoxKostOnderhoud.Text); This makes 80.00 in my database ...
0
votes
2answers
248 views

Java - Most efficient way to convert string to double

Hi I am reading from a text file and saving each line (split by a comma) into an array. The only problem is that most of the elements in the array are double values where as two elements are strings. ...
0
votes
2answers
47 views

Transform double into byteArray in android

I have a webservice that gets me a list of double's. Now i transform that list in a list of Strings. that i then call in an alert, with an dropdown. After this i have to take the value from the ...
1
vote
3answers
105 views

Error parsing double in Android

I created an android application that interacts with web service. I obtain the following error: 01-29 10:50:09.879: E/AndroidRuntime(12860): java.lang.RuntimeException: Unable to start activity ...
1
vote
1answer
192 views

convert doubles from a text file into a binary file

I have a text file full of numbers (from a molecular dynamics output, should be type double) divided in three columns and with thousands of lines like this: -11.979920 -13.987064 -0.608777 ...
-1
votes
3answers
226 views

NumberFormatException when parseing in Android and JSON. String --> double

I am coding an application for android which is supposed to get coordinates from a JSON document, convert this Strings to double and then use this doubles to create overlays on google map. But i get ...
0
votes
7answers
233 views

Empty String to Double using (Try)Parse

I've got a with 1.1 build system here using Parse for converting values (now it's 3.5). string myString = String.Empty; double myValue = double.Parse(myString); throws a FormatException (I expected ...
3
votes
1answer
131 views

While converting double 0.10 double.parse() converts to 10.0

I have a simple console application in visual studio for testing some code before going big. But now i have a problem with parsing some string to double. When the users input is a String: 0.10 i want ...
4
votes
1answer
224 views

Parsing a double from a string which holds a value greater than Double.MaxValue

Consider the following java code: String toParse = "1.7976931348623157E308"; //max value of a double in java double parsed = Double.parseDouble(toParse); System.out.println(parsed); For the ...
2
votes
3answers
106 views

Parsing doubles in an unknown locale in C#

I am writing a program that needs to parse a bunch of text files generated by some third-party software. Some of these files will be generated in France, where something like "1,5" means "one and a ...
-1
votes
4answers
2k views

Parsing string to double - java

For a project I have a program that is like a bank. The "bank" reads in a file with accounts in it that look like this: Miller William 00001 891692 06 <----string that needs to be converted to ...
3
votes
2answers
86 views

Android parseDouble returns Infinity when it should throw NumberFormatException

I'm trying to determine if a String represents a Double. I expect the following code to throw a NumberFormatException: String s = "type1234"; try { Double val = Double.parseDouble(s); } catch ...
1
vote
1answer
251 views

Qt QString::toDouble() produces inexact results

I have the following code in my application whereby I need to parse a string and convert it to double int i = ((QString)"294.4").toDouble() * 100; I am supposed to see the value 29440 as a value of ...
0
votes
2answers
172 views

How to know if a double string is round-trip safe?

I have a text representation of a double and want to know if it's safe to round-trip it to double and back. How do I know this if I also want to accept any kind of number-style of the input? Or how do ...
1
vote
3answers
164 views

What is the best way to parse double from unknown culture in .NET C#?

I'm using XML files to store user data. Files may be saved and loaded from different localisation. Depending on the culture, a double number can be saved as "1.2345" or as "1,2345". The difference is ...
4
votes
5answers
329 views

Why double.Parse(“0.05”) returns 5.0?

I am reading a value from my App.config; which is: <add key="someValue" value="0.05"/> And I try to convert it to double by doing: var d = ...
1
vote
4answers
142 views

Difficulty parsing a double - String

Thanks for taking the time to answer my question. I have a double value (let's say 22.35). I need to parse it into a String and get 2235. The following code is not working properly. double ...
2
votes
4answers
278 views

Parsing a String with an Exponent (Java)

I have a string similar to: 7.6E+7. My question is simple: How do I turn this into its corresponding number: 76000000? I have tried using substring to isolate the E+7 part, then parse the 7 part, ...
2
votes
1answer
397 views

Objective C - Scientific Notation “String” into Double

I am reading in a text file with tons of values in this format: 1.36E-08 Is there a way to "parse" (i think thats the word i need) this value into a double? If I assign it straight forward it gives ...
1
vote
4answers
777 views

Add thousands seperator to double in c#

I am trying to format a double to a string format which contains thousands seperators and all trailing decimal numbers in german number format. But I can't get it to work (am I really that foolish?). ...
1
vote
1answer
149 views

Parsing doubles from a String

This question is continuation of this question. The problem is that regex "[-+]?\\d*\\.?\\d+([eE][-+]?\\d+)?" doesn't correctly find doubles. For instance, input sdf9.99e.23 contains no doubles, ...
1
vote
2answers
218 views

Different NullExceptionHandling between parsing ints and doubles

I am taking a beginning Java class and stumbled on what seems like an error while testing a program I wrote for class. I do not need help with the homework assignment. I would like to understand two ...
2
votes
4answers
708 views

Parse multiple doubles from a String

I would like to know how to parse several double numbers from a string, but string can be mixed, for instance: String s = "text 3.454 sometext5.567568more_text". The standard method ...
2
votes
1answer
653 views

Double.TryParse() ignores NumberFormatInfo.NumberGroupSizes?

I'd like to know if I'm missing something or not... I'm running under the standard Great British culture. Double result = 0; if (Double.TryParse("1,2,3", NumberStyles.Any, CultureInfo.CurrentCulture, ...
6
votes
7answers
2k views

Why double.TryParse(“0.0000”, out doubleValue) returns false ?

I am trying to parse string "0.0000" with double.TryParse() but I have no idea why would it return false in this particular example. When I pass integer-like strings e.g. "5" it parses correctly to ...
3
votes
1answer
486 views

parsing string value from file into float where string contains comma

I have a input file coming into my application with some product prices values in each rows. However, when the price is higher then 999.99, the values contain , at appropriate place. 1,000.00 ...
1
vote
1answer
655 views

Parse a jdouble* native variable to a double* native variable (jni)

I try to parse an array of double that I got from jni in a "jdouble*" variable. What I want to do is convert that array of double to a "double*" array. It doesn't work and gives me a result like : ...
1
vote
1answer
478 views

Locale independent String to double

In my app, I have edit text boxes where the user enters a decimal value that the app uses to run a calculation. Some users in other locales are reporting problems when entering the numbers, like ...
5
votes
1answer
229 views

How to parse a number like “-2.000000e+000”

I am trying to read some data from a xml file, numbers are saved in forms like "-2.000000e+000" I tried to use "double.Parse" but it returns the number as -2000000!!!! can someone please tell me what ...
1
vote
3answers
629 views

String to Double Java error

I'm having some problems in the moment of parsing String to Doubles, with Spring and Java. This is not totally related to Spring, but it may put you in situation. I had a CustomNumberEditor, for ...
4
votes
2answers
286 views

double.Parse fails on NaN

In my 3.5 SP1 windows form application the following lines both fail with a format exception. Double.Parse(double.NaN.ToString(CultureInfo.InvariantCulture),CultureInfo.InvariantCulture); ...
0
votes
4answers
897 views

How do I determine whether a string has non-numbers in it?

I'm making a class called Double that can convert strings to doubles and doubles to strings. I need some way to check to make sure that when the user enters a string, the string doesn't have anything ...
4
votes
6answers
597 views

double parsing algorithm in C#

Does anyone know where to find source code for parsing doubles? I'm looking for the algorithm, not the standard "double.Parse" or "double.TryParse" methods.
0
votes
3answers
2k views

How to parse through string and find doubles in Java

I have the following content in a file that I need to parse. ((-2, -1 ), ( 4, 2) ) ((-1.2, 0), (0, 0)) ((0, 0), (10, -1)) ((5, 3), (5, 4)) ((5, 1) , (5, 5)) ((8, 3), (10, 3)) ((8, 5), (11.5, 5)) ...
0
votes
2answers
426 views

Precision error when parsing a double variable using StringTokenizer in Java

I'm using the StringTokenizer class to read a text file. In the text file, there's a couple of double values. interest = Double.parseDouble(aString.nextToken()); System.out.println(interest); It ...
4
votes
8answers
12k views

Input string was not in a correct format #2

double temp; temp = (double)Convert.ToDouble("1234.5678"); Hey Lads and Ladies, I can't for the life of me figure out why the above line isn't working. The above line gives me a runtime error that ...
1
vote
5answers
329 views

Why parse double in Java created new numbers?

After running the following lines : double d=Float.parseFloat("9.99"); System.out.println(""+d); I got this : 9.989999771118164 I expected to see : 9.99 Why and how to fix this ? ...
0
votes
3answers
676 views

Specify double.TryParse(..) number format?

I get lat/lon strings from an API back in the format e.g. '37.766713' or '-122.428938' (see http://en.wikipedia.org/wiki/Decimal_degrees) and want to parse these into a double each, however, ...
2
votes
3answers
2k views

How to Parse a String to Double

Here is my string 20.0e-6 I'm parsing it like String Ans=Double.Parse("20.0e-6") Now i'm getting the result like 2E-05 But the required output should be like 0.00002 How to get ...
1
vote
2answers
161 views

How to parse a number with a decimal regardless of the language setting

I am programming in C#.NET. I have a string that contains a number with a period as a decimal. How can I correctly parse that into a a double regardless of the localization/language settings. The ...
3
votes
3answers
1k views

is setlocale thread-safe function?

i need to change locale in the thread to parse double with strtod() correctly, i'm using setlocale() for this (C++). is it thread safe? UPD: another problem. when i invoke setlocale() in main ...
3
votes
4answers
495 views

How to parse a double formatted according to a locale settings in C++

I've found a problem with the strtod method which I've used all this time. First of all it doesn't understand non-point decimal separator, so I've forced to use this: std::replace(sSource.begin(), ...
1
vote
6answers
444 views

parse non-negative doubles

I need function that will take string and integer that indicates position of non-negative double or integer and return Number or null. If there is '+' return null. Examples 2.1 , 0 -> 2.1 ...
3
votes
1answer
400 views

Wrong value with double.Parse(string)

I'm trying to convert a string to a double value in .Net 3.5. Quite easy so far with double.Parse(value); My problem is that values with exponential tags are not right converted. Example: double ...
1
vote
1answer
1k views

how to control textbox type to double in visual basic?

I'd like to make a textbox that accepts only numbers, but not integer, but rather double. I've read here about e.Handled = Not Char.IsDigit(e.KeyChar) and it works, but again, it can be used only for ...
8
votes
3answers
7k views

Double.TryParse() input decimal separator different than system decimal separator

I have a source XML that uses a dot (".") as a decimal separator and I am parsing this on a system that uses a comma (",") as a decimal separator. As a result, value of 0.7 gets parsed with ...

1 2