Tagged Questions
0
votes
3answers
39 views
C# Convert double to string cut some last numbers
I have latitude and longitude in double and I want to convert them to string format with dot. So I am using:
start_lon.ToString(CultureInfo.InvariantCulture)
and I get right format (I get dot) but ...
4
votes
1answer
133 views
Set precision of std::to_string when converting floating point values [duplicate]
In C++11, std::to_string defaults to 6 decimal places when given an input value of type float or double. What is the recommended, or most elegant, method for changing this precision?
2
votes
3answers
63 views
Converting string to double always gives me wrong representation
I want to convert this string "0.00071942446044" to double by using Double.parsedouble method but it always gives this answer 7.1942446044E-4
Is there any idea to convert it to double but keeping ...
0
votes
3answers
63 views
Objective-C: Convert the entire double value to string without losing data
I have the following double value: 0.000900137869045636
which I would like to convert to a NSString.
I've tried the following code, but no matter what, it rounds the value to this: 0.000900138
...
0
votes
1answer
17 views
Javascript: Error in String Concatenation
So I have this javascript function:
function show_courseline (course_index, repeats) {
var s = "";
var count = 0;
while (count < repeats) {
s = s + 'Number: ' + ...
-4
votes
1answer
60 views
Calculate from string [closed]
I Have string from config file eg: '((#/@)*10)*$/x'
In code I must replace all that symbols (@,#,$,x) to some int from code.
eg: '((100/30)*10)*3/1'
And calculate it.
Must also works with powers. ...
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
2answers
39 views
Converting double numerical value to text
In the following if statement from a loop in my code, if the given oldsalary[i] doesn't meet these guidelines, I want to restore the previous numerical value of oldsalary[i] to "Error". However I want ...
0
votes
5answers
60 views
Take different values from a String and convert them to Double Values
In my code, I'm asking the user to input three different values divided by a blank space.
Then, those three different values I would like to assign them to three different Double variables.
I have ...
-4
votes
4answers
241 views
c# convert string to double array
I've been working all day trying to convert a string from a text file into a double array but can't figure out why I am getting the error "the file could not be read; input string was not in the ...
3
votes
2answers
71 views
Preserve Zeroes Before Decimal When Converting Double to String
Using VB6, when I have a double i = -0.1 if I convert it to a string with strTemp = Str(i) I lose the leading 0 before the decimal and end up with just -.1
How do I keep the leading 0 before the ...
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. ...
-1
votes
2answers
69 views
Why in this Java program the Doubles in a String Output have too many decimals?
In a solution to an exercise in the Book Art and Science of Java I had to write a program that converts Kilograms into the corresponding values in Pounds and Ounces.
I wrote the program but when I try ...
6
votes
5answers
157 views
Double to string with mandatory decimal point
This is probably dumb but it's giving me a hard time. I need to convert/format a double to string with a mandatory decimal point.
1 => 1.0
0.2423423 => 0.2423423
0.1 => 0.1
...
3
votes
3answers
216 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 ...
1
vote
5answers
76 views
Display only the decimal places in a String
I want to Converted a Double to a string.
And display only the decimal places.
On this way:
Double: 123.465
String: 46
Double: 1123.465
String: 46
Double: 123.46555987
String: 46
Now is my ...
0
votes
5answers
266 views
Convert strings to int or float in python 3?
integer = input("Number: ")
rslt = int(integer)+2
print('2 + ' + integer + ' = ' + rslt)
double = input("Point Number: ")
print('2.5 + ' +double+' = ' +(float(double)+2.5))
Gives me
Traceback ...
1
vote
7answers
171 views
Trying to create a hash table in java using string as key & double as value
In the following program:
import java.util.*;
public class HashTableStringdouble
{
// private Hashtable<String, double[]> model = new Hashtable<String, double[]>();;
private ...
-3
votes
4answers
76 views
Java: Basic questions [duplicate]
I'm new to Java and had some very basic questions:
Why must the main method always take in a String[]? --> public static void main(String[] args)
With regards to primitives, what is the difference ...
3
votes
2answers
204 views
Java - Quickest way to check if a string contains a double value
I am reading from many large text files and I have to check if each snippet of text contains a double value or not. The regex code I am currently using is causing my program to run very slowly because ...
0
votes
2answers
249 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
3answers
81 views
Php length of cyrillic string doubles its value
Hello here it is the problem:
when i get to the $_POST latin string strilen() works perfectly, but when i get cyrillic string strlen() doubles its value here is the code:
$word = $_POST['word'];
echo ...
1
vote
2answers
81 views
How i can convert string values in formats “1.123” and “1,123” to double by single double.TryParse?
I have an incoming source of string values representing double values with "." and "," delimiter and my program would run on PCs with different settings of delimiter ("," or ",")
Which way can I ...
-1
votes
3answers
79 views
casting of string to double
I have made a simple android app,i that some calculations are there from 1 activity's EditText value some multiplication,sum and other mathematical procedures and showing results as double in another ...
0
votes
0answers
42 views
Strings in java (decimal point)
Hi how can i perform a programme that can display how many digits come before the decimal point and how many comes after a number.
Test this program on :
z=123.456, y = 17/3, z = √2
0
votes
1answer
34 views
Conversion of String into double get error
I am capturing ouput value of external .exe file in java through this code
Process p = Runtime.getRuntime().exec("filepath\\myexefile.exe 5.53 46.46"); // 5.53 and 46.46 are two input ...
0
votes
0answers
14 views
Double to String with Specific Output Form Needed
I need to take a double (for example: 0.0000656978) and convert it to a string. The problem is:
std::ostringstream s;
s.unsetf(ios::floatfield);
s ...
-4
votes
1answer
79 views
add row of numbers from a file and store average into a double vector [closed]
I need to use a double vector to store an average of a student.
the file im reading from is set up like this:
2 //num of students
60 //total possible score
John //name
4 16 9 7 10 //scores
...
-1
votes
3answers
227 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 ...
2
votes
3answers
148 views
get a plain-string representation of a double without going through BigDecimal
With a double number in Java, is it possible to get a plain string representation (Eg., 654987) instead of the scientific format (Eg., 6.54987E5) ?
Now I know we can use the ...
0
votes
4answers
194 views
how to remove double characters and spaces from string
Please let me how to remove double spaces and characters from below string.
String = Test----$$$$19****45@@@@ Nothing
Clean String = Test-$19*45@ Nothing
I have used regex "\s+" but it just ...
3
votes
3answers
624 views
Matlab: Converting a double vector array to string cell array
map1 = containers.Map({'212','2','12','44'},[4,5,6,7]);
keyset = str2double(keys(map1));
Now I do a set of operations on the keyset which will give back
Keyset= [203,2,12,39];
I tired the ...
0
votes
1answer
228 views
C++/cli: How to convert String containing Bytes as characters to double
I have problem converting String^ containing 8 bytes as characters (as ascii) to double.
I want to take those 8 characters and convert them binary to double.
What would you recommend to do this ...
1
vote
1answer
107 views
Double precision when number converted from string
I’m getting numbers from a database. Some are stored as double in the database and some are stored as string.
What I want to do is count the decimal number of caracters so : 345.34938 would give me a ...
0
votes
1answer
98 views
How do I accept either a string or a double as input? C++
okay. So I wrote a formula calculator a while ago that does many different functions. I opened it today and noticed that every time I accessed a certain function and then finished that function, the ...
1
vote
2answers
203 views
Converting a string to double using c_str() in C++
Is it not reccomended to convert a string in such way:
string input = "81.312";
double val = atof(input.c_str());
0
votes
1answer
35 views
How to create a numeric array of elements in associative array by type
How can i create a new array from elements in associative array in the way that if values is integer then put that value on first place in a new array,on the second place put double,on the third ...
3
votes
4answers
97 views
Can't subtract one double from another?
Im quite new to Java and programming in general, but Ive read up on it quite a bit. Im currently making my first real OOP- a calculator that can perform certain equations.
However, while trying to ...
0
votes
2answers
60 views
Arrays with mutliple elements in java and other Issue
Having problems linking this program to this class. The program takes in a set of String + double arrays and goes through a series of sorts to yield a result. Our instructions are to sort then by name ...
1
vote
2answers
110 views
How to convert String to double with point?
I'm currently working on an app that works with locations and therefore I have the following code:
CLLocationCoordinate2d coord;
coord.longitude = [longitude doubleValue];
coord.latitide = [latitude ...
0
votes
1answer
85 views
How check a double overflow when I tried to convert a char* to a double in c++
I want to convert a char * to a double in c++. But before do that, I want to check that the char * is a right double number. So I have made this code :
bool ...
0
votes
1answer
83 views
Java Nice Format Double
How can I format a double to a string so that it shows all (no limit) decimal places if they are there but not show any trailing 0s?
-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 ...
0
votes
2answers
1k views
Matlab: Convert cell string (comma seperated) to vector
I have a huge csv file (as in: more than a few gigs) and would like to read it in Matlab and process each file. Reading the file in its entirity is impossible so I use this code to read in each line:
...
1
vote
1answer
195 views
How to print double 2D array in showMessageDialog?
I'm writing a program to inverse matrix
so I stored the result in
double matrix[][] = new double[n][2*n];
and when I print the result in consol it'll be correct
but now I try to improve the program ...
0
votes
5answers
181 views
Why is there a possible loss of precision converting a String to double?
for (int i = 0; i < 18; i++) {
line = file.readLine();
String[] word = line.split(";");
appartment[i] = new Appartment();
appartment[i].floor= Integer.parseInt(word[0]);
...
0
votes
1answer
213 views
Convert double to string with more than 5 decimal digit precision
At first I used boost's lexical_cast to do this. But due to the way C++ represents doubles/floats, when I converted 5.1 to a string it would give me 5.0999999 or something to that extent. So, I ...
4
votes
2answers
198 views
d programming, parse or convert string to double
as easy as it is in other languages, i can't seem to find an option in the d programming language where i can convert a string (ex: "234.32") into a double/float/real.
using atof from the ...
0
votes
2answers
218 views
mysql DOUBLE with thousands seperator
Is there any way to convert string to DOUBLE format when inserting new record, I want to strip it out or ignore if it exists in value when do insert in database.
INSERT INTO table1 (measure) VALUES ...
0
votes
2answers
105 views
Double value not correct on Device
int min = Int32.Parse(minutebox.Text);
double kj = Convert.ToDouble(a.kj);
double res = ((kj * op.koerpergewicht) * min);
textbox.Text = res.ToString();
Shows me the correct number (with its ...


