The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
48 views

Invalid double in converting String to Double

i get a NumberFormatException : invalid double "111,000,000" in this line of code : double SalePotential = Double.valueOf(EtPotential.getText().toString()); in the beginning i've used Numberformat ...
0
votes
1answer
33 views

Java/scala BigDecimal parsing 128 bit hex value

I have a number, in this case it is 61d54e71b6c8409f9586ffd4cf9ffada. I would like to work with it's numeric representation. In python I would do: number = 61d54e71b6c8409f9586ffd4cf9ffada But I ...
0
votes
2answers
28 views

Formatting Numbers with PHP

I'm saving numbers in MySQL using double(10,2). The numbers are getting saved like: 456.2 232.20 764 On output, I want to force 2 decimals and add the necessary trailing zeros (currency). Here ...
0
votes
0answers
17 views

False number formatting - vba excel

I have the following problem: I'm working with German number formatting (that is 6,29 = 6.29), but the format in which I get data from England is in English format (.xlsx file). This wouldn't be a ...
0
votes
0answers
41 views

Java uses coma instead of dot for float [duplicate]

I'm using a German version of Windows XP. Now I got a jar file from a project for test purposes. So far so good. The problem is that this jar file is converting data stored in the format in the ...
0
votes
1answer
41 views

How to set thousands seperators with two decimal places?

In my application ,am restricting the user to enter 7.2 digits(like 1234567.12).While entering it should be displayed as 1,234,567.12.But it has to be saved in database as 1234567.12.I am using ...
0
votes
1answer
77 views

Adding Class to the nth Digit of Numbers

There is a nice way in this answer for adding a span to every number in the page. var regex = /(\d+)/, replacement = '<span>$1</span>'; function replaceText(el) { if (el.nodeType ...
0
votes
1answer
89 views

jQuery noUiSlider and money number format

If you have a look at the following jsFiddle, http://jsfiddle.net/9ZSej/3/, you will see that I have a range slider using noUiSlider, which all works great. The only problem I have is formatting the ...
1
vote
6answers
119 views

Format a number string [closed]

I have a number String like "1234567890". I need to format this String into "1234 5678 90". (The blank spaces are SPACE character) Could somebody tell me on how to do this in java? Thanks
0
votes
1answer
53 views

Java NumberFormat with equivalent negative and positive pattern

I want to format a number without any prefix (or the same prefix) for both positive and negative numbers. The specification of NumberFormat states that you can specify a sub pattern for positive ...
0
votes
5answers
106 views

java.lang.NumberFormatException: For input string: “22”

public void loadFromFile(String filename) { File file = new File(filename); BufferedReader br; try { br = new BufferedReader(new FileReader(file)); numberOfAttributes = ...
1
vote
1answer
21 views

JFreeChart LogAxis Frequency/Resistance multipliers

I'm trying to figure out how to dynamically format the values on the axes of my line chart based on the multiplier. I'm using LogAxis for both the X and Y axes, as follows: final LogAxis rangeAxis ...
0
votes
2answers
53 views

Adding digit spacing with jQuery

I would like to inspect a span element and check for its number format and apply digit grouping to it with jquery It the number has more than 3 digits, that is for >1000, it must do digit grouping, ...
0
votes
3answers
72 views

How to optimise this regex to match string (1234-12345-1)

I've got this RegEx example: http://regexr.com?34hihsvn I'm wondering if there's a more elegant way of writing it, or perhaps a more optimised way? Here are the rules: Digits and dashes only. Must ...
0
votes
4answers
71 views

php numbers formatting [closed]

I have this variable $mynumber that echos a number between 1 and 100, on the output, I need this number to be divided by 2, round it, and place a dot between the digits, like this: <?php echo ...
19
votes
1answer
183 views

Java7 Double.toString() returns 0.005 / java6 it is 0.0050

I am upgrading from JDK6 to JDK7. The following code demonstrate shows a minor change in Double.toString() public class StringDemo { public static void main(String[] args) { ...
3
votes
3answers
102 views

Java NumberFormat ignoring comma in US locale ?

I don't understand something in the NumberFormat, in US locale it is suppose to treat comma (",") as a group separator - for thousands. Why does it ignore commas in incorrect places for this locale ? ...
1
vote
2answers
53 views

How to format a double with more digits?

I have a double value and I want to convert it to a string with more than the default 15 digits. How can I accomplish this? (1.23456789987654321d).ToString(); // 1.23456789987654 ...
0
votes
1answer
106 views

excel interop : NumberFormat #,##0.000 doesn't display the expected result

I developed a C# utility class called ExcelGenerator that generate a List of objects to excel. I want to display double numbers in this format : 3 288,523. NumberFormat = "#,##0.000" doesn't display ...
1
vote
3answers
80 views

Rounded decimal truncating small values - rounding up

I have, for instance, 1000 tomatoes that costs a total of $4.00. This would be 0.004 per tomato. My data type is a decimal (9,2). If I wanted to round that value up to 0.01, how would I accomplish ...
0
votes
0answers
19 views

Display two decimals when the number is called

What do I need to add so that when the number si called it will round the number to two decimals? this.textBox103.BackColor = System.Drawing.SystemColors.Info; ...
3
votes
1answer
620 views

Java NumberFormat

I'm trying to use java's NumberFormat class and the getPercentInstance method in a program to calculate tax. What I want the program to display is a percentage with two decimal places. Now, when I ...
11
votes
3answers
368 views

C++ Test - Does sign bit 1 always mean negative?

I was just taking a C++ test and I got the following question wrong: Q: What is the output of the following program? #include <iostream> #include <stdint.h> using namespace std; int ...
3
votes
3answers
75 views

How to determine the type of primitive in a String representation?

I have a String representation of a primitive and my goal is to determine which primitive is it. My function is as follows: public Object getPrimitive(String primitiveAsString) { ..... } So for ...
0
votes
2answers
41 views

How can I put two integers next to each other?

Suppose that we have two 2-d arrays. I want to read each member of the first array and returns two numbers next to each other, first, the column number and second the exact number that the program ...
0
votes
0answers
28 views

iPhone phonegap phonenumber confirm invalid format

I have this phone number format "(123) 4567-899", when i click appear alert with this format "(1234) 567899" some time i got this without format just "1234567899" depending the number for example. ...
0
votes
1answer
29 views

combine or add values in Action Script 2.0?

I'm new with AS and trying to add values using either arrays of functions to combine values but they do keep showing NaN. function combine(a, b, c):Number{ return a + b + c; } var total = ...
0
votes
0answers
57 views

Remove trailing zeros from QDoubleSpinBox

I'm using a QDoubleSpinBox to get user input. I know next to nothing about the order of magnitude of the value, valid input ranges from values as small as 0.0000001 to values as large as 10000000. If ...
2
votes
3answers
161 views

PHP: If number (with comma), convert it to right number format (with point)

I have an array of mixed values: $row = array('Unspecified risk','Yes','8','3','2','13','none','-1,49','-2,51','-1,46','-1,54'); -1,94 -1,55 As you can see it contains text and both negative and ...
2
votes
2answers
111 views

Why is the thousands separator called the “grouping separator”?

In many programming languages, the thousands separator (e.g., the "," in the American string "1,000") is called the "grouping separator". Why is this? Are there any real-world locales that separate ...
3
votes
3answers
115 views

as.numeric with comma decimal separators?

I have a large vector of strings of the form: Input = c("1,223", "12,232", "23,0") etc. That's to say, decimals separated by commas, instead of periods. I want to convert this vector into a numeric ...
0
votes
2answers
55 views

Keeping comma in the text field

I am trying give decimal value to input field like - 10,235,333. It takes this value but as I move to next field, commas are removed from text field. Is there any way that commas will be left in the ...
-2
votes
4answers
127 views

formating a number/string with decimal separator

I am trying to format a Number with DecimalFormat. But I want it to format a number, that is like input: 1234. --> should be formatted to: 1,234. But I get 1,234.0 or 1,234.00 depending on my ...
0
votes
2answers
70 views

Java Programming - Need to insert commas

I'm just starting to learn java and need help with the basics. I wrote code that converts light speed to kilometers per second. The code looks like this: public class LightSpeed { private double ...
1
vote
1answer
127 views

Android NumberFormat.getCurrencyInstance for es_US returns incorrect values

Locale locale = Locale.getDefault(); final NumberFormat numberFormat = NumberFormat.getCurrencyInstance(locale); Locale is es_US numberFormat is ...
11
votes
2answers
183 views

How to print a double value that is just less than another double value?

Actually I am working on range expression in c++. So what I want is if I have any expression like x<1 Then my double getMax(...); should return a double value that is just before 1.000 ...
2
votes
1answer
120 views

Use scientific notation only if needed

I want to parse a double value into a string. I want my number to have a specified number of digits (that I won't know until runtime). If this number can be expressed with a non-zero value in number ...
0
votes
2answers
101 views

Double elements in Float arraylist after parsing numbers by numberFormat

I want to parse some Strings (they include some numbers) with same format but different number kind and set these number to their related array. for example having this string: " ...
1
vote
2answers
225 views

How to catch/handle number format exception in vb.net?

I would like to add 'try catch' statement on the module that I'm creating. I want to specify the exception to be caught in number format. This is the sample code, Try interest = ...
0
votes
4answers
68 views

Using an abstract class in Java

Java Documentation says NumberFormat is an abstract class. But the following line of code is confusing me. NumberFormat nf = NumberFormat.getInstance(); How can we use this ...
3
votes
2answers
141 views

NumberFormat.getCurrencyInstance(); Failure

I'm trying to parse my currency string into a bigdecimal using NumberFormat.getCurrencyInstance(); The following scenario $1,000.01 Pass 1000.01 Pass 1,000.01 Fail -> This needs to be parsed to ...
0
votes
2answers
454 views

JAVA OptionPane.showMessageDialog output formatting for decimal

I am very new to Java and playing with displaying a message with GUI. So if use the console System.out.printf("Your total montly bill is $%.2f", totalCost); gives me the output with decimal the ...
0
votes
2answers
75 views

regex for custom phone number?

Can Anyone give me regex for validate number which is min 6 or max 15 digits number it may be contain (),-,#( if there then only at first place followed by number),/,+ eg. (079) 22861851 ...
0
votes
5answers
73 views

Using Fractions On Websites

Is it possible to use any fraction symbol on a website, represented as ¼ rather than 1/4 for example? From what I've gathered, these are the only ones I can use: ½ ⅓ ⅔ ¼ ¾ Is this right and ...
2
votes
3answers
355 views

Twig: How to round up?

I have a division in twig. Sometimes, the result can be with decimals and i need to have always a rounded up result. Ex. 7 / 2 = 3.5 I would like to have 7 / 2 = 4 I know how to use floor in ...
0
votes
1answer
175 views

Java NumberFormat: Missing Currency Symbols for Portugal, Luxembourg and others

Within the scope of an Android application (language used is Java), I want to display a list of countries and their respective currencies. However there are a few oddities: For some locales the ...
1
vote
2answers
276 views

How to make JFormattedTextField accept integer without decimal point (comma)?

I used JFormattedTextField withNumberFormat in this way: -Creat a JFormattedTextField refernce JFormattedTextField integerField; -Create a NumberFormat refernce NumberFormat ...
0
votes
2answers
483 views

Format a cell as arbitrary currency regardless of locale, using VBA

This is really bugging me as it seems pretty illogical the way it's working. I have a macro to format a cell as a currency using a bit of code to obtain the currency symbol. Here is the code ...
1
vote
3answers
130 views

How to format number as Kb/Gb using Java? [duplicate]

Possible Duplicate: Format file size as MB, GB etc Using NumberFormat, I would like to have my numbers formatted as scientific multipliers. In other words, I would like to have the ...
0
votes
1answer
27 views

Selectional number formatting of array values

I have two types of numbers (FLOAT and BIGINT) in a mysql table. A:0.002 B: 51443234 I need to replace "." with "," in the numbers and I can do it by number_format foreach ($row as $key => ...

1 2 3 4 5 7