Tagged Questions
The numberformat tag has no wiki summary.
10
votes
2answers
111 views
how can I remove zeros from exponent notation
I'm using exponential formatting to format a decimal number in C#.
For example if the number is
0.0001234567
Formatting with
(0.0000123456).ToString("E4");
Shows
1.2345E-004
How can I ...
9
votes
5answers
6k views
Excel Number Format: What is “[$-409]”?
i'm automating excel, using the macro system as a guide to what i should do through automation. When i formatted a column as a date, the macro generated a NumberFormat for the column to be:
...
8
votes
6answers
780 views
How to go about formatting 1200 to 1.2k in java
I'd like to format following numbers into the numbers next to them with java:
1000 to 1k
5821 to 5.8k
10500 to 10k
101800 to 101k
2000000 to 2m
7800000 to 7.8m
92150000 to 92m
123200000 to 123m
The ...
7
votes
2answers
221 views
How can I change the TEdit default error message (NumbersOnly mode)?
How can I change the TEdit's default error message when I use it in NumbersOnly mode. I mean this error:
Unacceptable character You can only type a number here
Is it possible to change this ...
7
votes
10answers
6k views
Double to string conversion without scientific notation
How to convert a double into a floating-point string representation without scientific notation in the .NET Framework?
"Small" samples (effective numbers may be of any size, such as 1.5E200 or ...
6
votes
4answers
134 views
How would you write a wrapper function or class to format numbers as percent, currency, etc. in R?
In a previous question, I asked whether whether a convenient wrapper exists inside base R to format numbers as percentages.
This elicited three responses:
Probably not.
Such a wrapper would be too ...
6
votes
3answers
2k views
Decimal separator in NumberFormat
Given a locale java.text.NumberFormat:
NumberFormat numberFormat = NumberFormat.getInstance();
How can I get the character used as Decimal separator (if it's a comma or a point) in that ...
6
votes
2answers
385 views
How can I change DecimalFormat behavior based on input length?
I am using the following DecimalFormat pattern:
// Use ThreadLocal to ensure thread safety.
private static final ThreadLocal <NumberFormat> numberFormat =
new ThreadLocal ...
6
votes
4answers
2k views
What's the easiest way to add commas to an integer in Python? [closed]
Possible Duplicate:
how to print number with commas as thousands separators in Python 2.x
For example:
>> print numberFormat(1234)
>> 1,234
Or is there a built-in function in ...
6
votes
2answers
534 views
How to format long numbers?
If I have a number that is 100,000,000 how can I represent that as "100M" in a string?
5
votes
3answers
71 views
Equals() and indexOf() not working as I'd expect using NumberFormat
I'm attempting to check if a string(filter) is contained in another string(formattedAmount) i.e. is filter a substring of formattedAmount.
I could not get it to work so I just changed the code to use ...
5
votes
6answers
171 views
How can I add a comma to separate each group of three digits in a text input field?
I have a text input field for a form where users are meant to enter a number. I would like to automatically insert a comma after every third digit.
For example, entering '20' would result in '20'. ...
5
votes
5answers
691 views
What is the equivalent of NumberFormat in JavaScript or JQuery?
I use formatter for my double values in Java like:
private static final NumberFormat formatter = new DecimalFormat("###0.00");
formatter.format(doubleValue);
However I don't want to do it on the ...
5
votes
1answer
266 views
Mathematica internal number formats and precision
Tangentially related to this question, what exactly is happening here with the number formatting?
In[1] := InputForm @ 3.12987*10^-270
Out[1] := 3.12987`*^-270
In[2] := InputForm @ 3.12987*10^-271
...
5
votes
3answers
981 views
number to percentage in JavaScript
Give me a native (no jQuery, Prototype, etc. please) JavaScript function that converts numbers as follows:
input: 0.39, 2.5, 4.25, 5.5, 6.75, 7.75, 8.5
output: 0.39, 2.50, 4.25, 5.50, 6.75, 7.75, ...
5
votes
4answers
952 views
How to prefix a positive number with plus sign in PHP
I need to design a function to return negative numbers unchanged but should add a + sign at the start of the number if its already no present.
Example:
Input Output
----------------
+1 ...
5
votes
3answers
3k views
Is it possible to set the CultureInfo for an .NET application or just a thread?
I've an application written in C# which has no GUI or UI, but instead writes files that are parsed by another application (in XML and others).
I have a customer whose CultureInfo has the ...
4
votes
3answers
1k views
JTable cell editor number format
I need to show numbers in jTable with exact 2 decimal places. To accomplish this I have created a custom cell editor as:
public class NumberCellEditor extends DefaultCellEditor {
public ...
4
votes
1answer
1k views
How can I format the numbers in viewrecord on jqgrid pager?
When a large number of pages are present, the format of the numbers in the pager is "11 223" but I would like it to be "11,223"
View 11 026 - 11 031 of 11 031
should be
View 11,026 - 11,031 of ...
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 ...
4
votes
2answers
513 views
Strange behaviour of NumberFormat Java
I have the following code to parse a String variable called str.
NumberFormat formatter = NumberFormat.getInstance();
Number number = formatter.parse(str);
I want to catch the Exception thrown ...
4
votes
3answers
549 views
Java localizing number formatting
Java uses period in decimals, e.g. 1/2 = 0.5
Is there any way to make it use comma instead, as in 1/2 = 0,5? And not to use comma for thousands (as in one hundred thousand = 100,000) but use space ...
3
votes
1answer
477 views
Number Formatting (input mask) in jQuery
I'm trying to format numbers in a text field like so:
123,456,789
I know that there are a lot of jQuery plugins to do this, however, they all change the actual value. I just want it to look ...
3
votes
3answers
262 views
Excel style conditional numeric formats in .Net
I need to use Excel conditional format strings to format numbers in a .Net application. For those unfamiliar with them, the Excel format strings look like this:
...
3
votes
4answers
301 views
Numerical Representation of real numbers, alternative to floating-point format
are there any formats to describe real numbers, other than floating point format?
In particular, I ask for formats which still provide feasible computation performance (compared to floating point), ...
3
votes
2answers
570 views
Problem parsing currency text to decimal type
I am trying to parse a string like "$45.59" into a decimal. For some reason I am getting exception that the input was not in the correct format. I don't care about all the localization stuff because ...
3
votes
7answers
218 views
how to represent a n-byte array in less than 2*n characters
given that a n-byte array can be represented as a 2*n character string using hex, is there a way to represent the n-byte array in less than 2*n characters?
for example, typically, an integer(int32) ...
3
votes
4answers
1k views
C# Parse a Number from Exponential Notation
I need to parse the string "1.2345E-02" (a number expressed in exponential notation) to a decimal data type, but Decimal.Parse("1.2345E-02") simply throws an error
3
votes
4answers
153 views
Number Formatting in Thousands
How, for example, do I turn the number 10562.3093 into 10,562 in C#?
Also, how do I ensure that same formatter will apply correctly to all other numbers?....
...For example 2500.32 into 2,500
Help ...
3
votes
7answers
2k views
DecimalFormat and Double.valueOf()
I'm trying to get rid of unnecessary symbols after decimal seperator of my double value. I'm doing it this way:
DecimalFormat format = new DecimalFormat("#.#####");
value = ...
3
votes
2answers
66 views
Can you get access to the NumberFormatter used by ICU MessageFormat
This may be a niche question but I'm working with ICU to format currency strings. I've bumped into a situation that I don't quite understand.
When using the MesssageFormat class, is it possible to ...
3
votes
2answers
1k views
PowerShell, formatting values in another culture
Is there an easy way in PowerShell to format numbers and the like in another locale? I'm currently writing a few functions to ease SVG generation for me and SVG uses . as a decimal separator, while ...
3
votes
1answer
492 views
java generate regular expression from localized NumberFormat
Is there any clean way to generate a regular expression that will match values formatted with a locale-configured java NumberFormat? Or some library that will do so?
This is in a web-based app & ...
3
votes
2answers
2k views
J2ME - number format
I need to format decimal numbers with patterns in J2ME just like java DecimalFormat.
I see an option to port Format/NumberFormat/DecimalFormat.
Can you suggest ready to use implementation or ...
2
votes
3answers
75 views
Android: Parsing EU currency into a Number
I have an EditText which should work as follows (Android 2.3.3):
The user enters for instance 10,40 (which is 10 Euro and 40 Cents in EU currency) - I want to then take that String input and convert ...
2
votes
4answers
34 views
Print a number in decimal
Well, it is a low-level question
Suppose I store a number (of course computer store number in binary format)
How can I print it in decimal format. It is obvious in high-level program, just print it ...
2
votes
5answers
88 views
How to parse numbers more strict than what NumberFormat does in Java?
I'm validating user input from a form.
I parse the input with NumberFormat, but it is evil and allow almost anything. Is there any way to parse number more strict?
E.g. I would like to not allow ...
2
votes
1answer
82 views
JFormattedTextField and NumberFormat to work with Float
I made a small dialog with a JFormattedTextField, to enter a Float number between 0 and 10 up to 3 decimal numbers. I'm using NumberFormat for that, and a PropertyChangeListener to validate the value ...
2
votes
2answers
78 views
How can I make JFormattedTextField use $1.55, but store the value as the Integer 155?
Almost everything I've ever read about Java says don't use float or double for currency, but it seems like everything in Swing tries to force you to do exactly that if you want to input / display ...
2
votes
1answer
100 views
How to set NumberFormat to Number with 0 decimal places
The below VBA in MS Access is run to format my Excel sheet. However, it is formatting to Number with 2 decimal places. How do I specify that I want 0 decimal places?
...
2
votes
2answers
119 views
perl exponentiation results in “nan”
i have the following problem:
I have a number of values x and I need to compute x^e (e being euler's number).
I do this:
$x = $x ** exp(1);
This results in "nan" for all of my test cases.
However ...
2
votes
5answers
143 views
Any way to avoid results containing “9.223372036854776E18”
I'm making a program that turns a large number into a string, and then adds the characters of that string up. It works fine, my only problem is that instead of having it as a normal number, Java ...
2
votes
6answers
84 views
Numbers in the form of 001
Is there a special name for numbers in the format of 001.
For example the number 20 would be 020 and 1 would be 001. Its hard to Google around when you don`t know somethings name! Since I am already ...
2
votes
2answers
107 views
What is the equivalent function of PHP's number_format in C#?
Say I have these values:
var upSize = 365308443361.28;
var downSize = 351897407979.52;
var size = upSize/downSize;
In PHP I can do this:
number_format(size, 3);
and the output would be: 1.038
...
2
votes
4answers
406 views
How to read in numbers with a comma as decimal separator?
I have a series of CSV files where numbers are formatted in the european style using commas instead of decimal points, i.e. 0,5 instead of 0.5.
There are too many of these files to edit them before ...
2
votes
2answers
392 views
Parse Japanese currency String with java.text.NumberFormat
HI,
I face problems parsing a Japanese currency string in Java. Seems that the Yen symbol is not matching what java think it should be. Here is my code:
NumberFormat f = ...
2
votes
1answer
409 views
convert numberformat (coldfusion)
HI folks! i got a simple question for coldfusion users, does anyone know how to convert a dynamic number into decimals, for example i have a code: #number# and it equals to, for example 10 but i need ...
2
votes
2answers
2k views
Trying to format number to 2 decimal places jQuery
Getting a bit muddled up using variables and now cant seem to get calculation to work at all!?
$("#discount").change(function(){
var list = $("#list").val();
var discount = ...
2
votes
2answers
111 views
computing scientific numbers in java
I am trying to add different numbers from a file in java.
Numbers can be of format : "1.13206e+06"
How can I parse this number to reflect actual value in java??
Thanks
2
votes
1answer
245 views
Format a number with X decimal places and InvariantCulture?
I want to format a number using ToString(CultureInfo.InvariantCulture) and also to 5 decimal places, which can be done using ToString("N5"). How can I do both together?
Thanks :)