Tagged Questions
The number-formatting tag has no wiki summary.
26
votes
8answers
1k views
Code-Golf: Friendly Number Abbreviator
Based on this question: Is there a way to round numbers into a friendly format?
THE CHALLENGE - UPDATED! (removed hundreds abbreviation from spec)
The shortest code by character count that will ...
13
votes
3answers
140 views
Objective-C: format numbers to ordinals: 1, 2, 3, .. to 1st, 2nd, 3rd
In Objective C, is there any way to format an integer to ordinals
1 => "1st", 2 => "2nd" etc... that works for any language?
So if the user is French he will see "1er", "2ieme" etc..
Thanks a lot!
...
11
votes
6answers
3k views
C# convert int to string with padding zeros?
In C# I have an integer value which need to be convereted to string but it needs to add zeros before:
For Example:
int i = 1;
When I convert it to string it needs to become 0001
I need to know ...
9
votes
5answers
5k views
How to output integers with leading zeros in JavaScript
I can round to x amount of decimal places with math.round but is there a way to round left of the decimal? for example 5 becomes 05 if I specify 2 places
7
votes
3answers
3k views
Phone number formatting
I have a text field where the user enters data. It's a phone number field. If the user enters 1234567890, I want it displayed as (123)-(456)-7890 as the user types. How is this possible?
7
votes
4answers
3k views
Why does .NET decimal.ToString(string) round away from zero, apparently inconsistent with the language spec?
I see that, in C#, rounding a decimal, by default, uses MidpointRounding.ToEven. This is expected, and is what the C# spec dictates. However, given the following:
A decimal dVal
A format string ...
7
votes
6answers
1k views
Format Number like StackoverFlow (rounded to thousands with K suffix)
How to format numbers like SO with C# ?
10, 5k ...
Thanks.
6
votes
2answers
491 views
How can I format numbers in C# so 12523 becomes “12K”, 2323542 becomes “2M”, etc? [closed]
Possible Duplicate:
Format Number like StackoverFlow (rounded to thousands with K suffix)
How can I format numbers in C# so 12523.57 becomes "12K", 2323542.32 becomes "2M", etc?
I don't ...
5
votes
2answers
70 views
Localized exponential notation?
i'm trying to convert numbers into localized strings.
For integers and money values it's pretty simple, since the string is just a series of digits and digit grouping separators. E.g.:
12 345 678 ...
5
votes
1answer
853 views
Printing negative values as hex in python
I have the following code snippet in C++:
for (int x = -4; x < 5; ++x)
printf("hex x %d 0x%08X\n", x, x);
And its output is
hex x -4 0xFFFFFFFC
hex x -3 0xFFFFFFFD
hex x -2 0xFFFFFFFE
...
5
votes
3answers
373 views
How to format numbers similar to Stack Overflow reputation format
I want to convert a number into a string representation with a format similar to Stack Overflow reputation display.
e.g.
999 == '999'
1000 == '1,000'
9999 == '9,999'
10000 == '10k'
10100 == '10.1k'
...
5
votes
2answers
399 views
How to set up C++ Number Formatting to a certain precision?
I understand that you can use iomanip to set a precision flags for floats (e.g. have 2.0000 as opposed to 2.00).
Is there a way possible to do this, for integers?
I would like a hex number to ...
4
votes
3answers
118 views
How to print +1 in Python, as +1 (with plus sign) instead of 1?
As mentioned in the title, how do I get Python to print out +1 instead of 1?
score = +1
print score
>> 1
I know -1 prints as -1 but how can I get positive values to print with + sign without ...
4
votes
3answers
154 views
c# number shaper for money amount like convert int 12333545 = 12,333,545
What is the easiest and fastest way of converting string or int to the money format
i mean like an integer = 21232221 when shaped = 21,232,221
c# 4.0 asp.net 4.0
thank you
the direct answer
...
4
votes
2answers
667 views
How do you set the cout locale to insert commas as thousands separators?
Given the following code:
cout << 1000;
I would like the following output:
1,000
This can be done using std::locale, and the cout.imbue() function, but I fear I may be missing a step here. ...
4
votes
1answer
172 views
how to Display data in matrix with with more than 4 decimals
He,
My question is about this matlab
output:
>>model3.Mu
ans =
0.7677 -1.1755 -0.8956
-0.0100 0.0883 0.0235
0.0001 -0.0010 -0.0003
-0.0000 0.0000 0.0000
How to ...
3
votes
2answers
135 views
How format the output of decimal numbers via the JOptionPane
My assignment asks me to format values to two decimal places. We are asked to use the JOptionPane for input/output. I know how to format to two decimal places using the System.out.printf. However, I ...
3
votes
3answers
94 views
Whats the best way to format this number?
I have a double and I want to format it with the following rules:
If there are no decimal places show just the number (see 100 example below)
If there are any decimal places show 2 decimal places
...
3
votes
2answers
370 views
c++: Format number with commas?
I want to write a method that will take an integer and return a std::string of that integer formatted with commas.
Example declaration:
std::string FormatWithCommas(long value);
Example usage:
...
3
votes
3answers
97 views
How to pad numbers with underscore in Java?
How to pad numbers with underscores in Java, instead of the usual zeros ?
For example I want
123.45 to be formated to ___123.45 and
12345.67 to be formated to _12345.67
0.12 to be formated to ...
3
votes
1answer
174 views
number_format() causes errors in Apache log
I am using number_format to round floats to only 2 decimal digits. The problem is that some of my inputs dont have more than 2 decimals digits to begin with. So the code:
number_format($value, 2)
...
3
votes
3answers
261 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
2answers
539 views
ASP.NET MVC Model Binder with Global Number Formats
The default model binder is returning errors for properties that are of type double when my application is being used in countries that use different number formatting for decimals (e.g. 1.2 = 1,2). ...
3
votes
1answer
141 views
Large numbers to string in JavaScript
When I do the following:
alert((2053716830872415770228778006271971120334843128349550587141047275840274143041).toString());
I get the "2.053716830872415e+75" exponential notation.
I want to alert ...
3
votes
2answers
410 views
Number formatting in python
How can I make this python code:
# -*- coding: cp1252 -*-
a=4
b=2
c=1.0
d=1.456
print '%fx³ + %fx² + %fx + %f = 0' %(a,b,c,d)
print like this:
4x³ + 2x² + 1x + 1.456 = 0
instead of like this ...
3
votes
6answers
290 views
Dynamic number format in .NET?
I have a problem and cant find a solution. I have numbers (decimal) like 85.12343 or 100 or 1.123324. I want to format this in a way that the result is always 13 chars long including the separator.
...
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
3answers
2k views
Java add leading zeros to a number
I need to return a string in the form xxx-xxxx where xxx is a number and xxxx is another number, however when i have leading zeros they disappear. I'm trying number formatter, but it's not working.
...
2
votes
2answers
48 views
numeric formatting “R” in Json.NET
I'm using Json.NET to output a notepad-readable JSON file. The output is nearly perfect, except very small numbers (-0.000004) are converted to scientific notation. This is not my intention.
I ...
2
votes
3answers
110 views
Formatting numbers (decimal places) with CSS
Is it possible to format numbers with CSS?
That is: decimal places, decimal separator, thousands separator, etc.
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
2answers
121 views
In laymans terms, what does the Python string format “g” actually mean?
I feel a bit silly for asking what I'm sure is a rather basic question, but I've been learning Python and I'm having difficulty understanding what exactly the "g" and "G" string formats actually do.
...
2
votes
3answers
74 views
When converting double to string, how can I round it up to N decimal places in C#?
I need at most N decimals, no more, but I don't want trailing zeroes. For example, if N = 2 then
15.352
15.355
15.3
15
should become (respectively)
15.35
15.36
15.3
15
2
votes
2answers
179 views
MVC3 edit for decimal fields and localization
My locale uses a comma ,, and not a dot . for decimal separator.
In MVC3, when I open an Edit view where the decimal values are shown with
@Html.EditorFor(model => model.MyDecimalVal)
the ...
2
votes
2answers
42 views
format a number as I want
I have the number: a = 3.860575156847749e+003; and I would show it in a normal manner. So I write b = sprintf('%0.1f' a);. If I print b I will get: 3860.6. This is perfect. Matter of fact, while a is ...
2
votes
1answer
62 views
What quirks are there in making large strings with the || operator?
Specifically, I am building out an email message body and getting some odd behavior with inserting CRLF (defined as CRLF CONSTANT VARCHAR2(2) := CHR(13) || CHR(10);) and with formatting dollar values ...
2
votes
2answers
124 views
C# convert formatted string (31.2k) back to number (31240) [Solved!]
Let's say I have this code:
int i = 31240;
string Number = ((double)i / 1000).ToString("0.#k");
I get this result as a string for Number: 31,2k
And now, I wanna do the exact ...
2
votes
5answers
157 views
Override decimal ToString() method
I have a decimal datatype with a precision of (18, 8) in my database and even if its value is simply 14.765 it will still get displayed as 14.76500000 when I use Response.Write to return its value ...
2
votes
5answers
228 views
Separate digits in an NSString to display a phone number
I have an NSString that holds something like this:
4434332124
How can I make that into something like this?
443-433-2124
2
votes
3answers
62 views
toFixed(3) -6.1e-15 returns -0.000, how can i ditch the minus?
it ("tests a positive zero", function() {
expect((Math.sin(-1*Math.PI)*300).toFixed(3)).toEqual("0.000");
});
But it fails, because it yields -0.000 (tested on chrome and safari). Removing ...
2
votes
1answer
91 views
Disabling digit grouping in a JSpinner
I needed a widget to select a TCP/UDP port, so I wrote the following:
public static JSpinner makePortSpinner()
{
final JSpinner spinner = new JSpinner(
new SpinnerNumberModel( ...
2
votes
4answers
160 views
Formatting an Integer using ISO-prefixes for kB,MB,GB,… and kiB,MiB,GiB,
I looking for the function that prints file size on the mode-line in size-indication-mode. I have searched for size-indication-mode in the source but cannot find a code-references to it. So where is ...
2
votes
3answers
366 views
Is there a Java number formatting library that handles significant digits?
The built in DecimalFormat only allows you to specify number of digits to the right of the decimal place.
Because of the limitations of representing numbers as double, number formatting needs to ...
2
votes
1answer
229 views
Retain number of digits during processing input->number->output during XSLT processing
For this XSLT:
<xsl:variable name="source0" select="number(num2)"/>
<xsl:variable name="source1" select="number(num3)"/>
s0 plain: <xsl:value-of select="$source0"/>
...
2
votes
3answers
238 views
MVC where to format numbers?
shell i format my numbers 1234.20 => 1'234.20 in model or in view using php and codeigniter?
2
votes
6answers
436 views
Python: How do I format a number with a variable number of digits?
Say I wanted to display the number 123 with a variable number of padded zeroes on the front.
For example, if I wanted to display it in 5 digits I would have digits = 5 giving me:
'00123'.
If I ...
2
votes
2answers
1k views
Format a number as currency in a JTable?
Given a JTable where one of the columns contains a number, how do I display this number as a currency? I.e. 5 should display as $5.00 etc.
Can this be done directly on the JTable after it has been ...
2
votes
4answers
928 views
Java: Converting a double to a String
I have a double whose value is 10,000,000.00 (ten millions). I have to
convert it to a String. When using the method "toString" I am getting the String
"1.0E7" which is correct following the ...
2
votes
5answers
6k views
how to format currency in displaytag
I am getting the value of amount like 4567.00 , 8976.00 etc. Now while dispalying this value in displaytag i would like to print it as $4567.00 instead of just 4567.00. How can i do that?
Provided i ...
1
vote
2answers
36 views
Issue in viewing double values
I am having an issue with viewing double data in matlab console. Actually, I am importing a matrix from my data file. The value of a particular row and column was 1.543 but in the console when I use ...