0
votes
2answers
77 views

Numbers formatting in C#

I have numbers like this: -1.0001 -10000.01 And I need to get this: -1.0001 -10000,01 Requirements: - Decimal separator is "," - Group separator is " " - part of a number after the comma can have ...
0
votes
1answer
19 views

formatting double and float once and for all in jsf2 application

I do a lof of manipulations, calculs with numbers (especialy double (#0.00) ) and I ask if is there a way to format those numbers once and for all I use this converter for the momentfor each double ...
1
vote
1answer
60 views

Lua number currency format

In lua, how can I format a number to have 2 decimal places? I have a value example: 25.333 and I want it to display 25.33 instead. Sometimes it's an integer like 55 and I want it to display 55.00 ...
0
votes
3answers
241 views

grails number (double) format in view

I'm new to Grails (2.2.0) and try to figure out how to format double values in the views. I have a lot of them therefore I would prefer some code in one of the config files if possible. All values in ...
-2
votes
3answers
106 views

How to remove dots from numbers?

I have a form formatted with javascript, which makes numbers look like: 10.000 or 2.300 <form> <input type="text" name="price_1" value="2.300"> </form> But i want to store them ...
0
votes
4answers
105 views

Need to display price without decimal

Im trying to display price of a product, and when the price is a whole value to NOT display the decimal ".00"; But the current result is ALWAYS showing the decimal value. I have provided my current ...
1
vote
3answers
135 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 ...
1
vote
2answers
66 views

powershell date from keyboard

I have a script that renames files to dates entered by the user at the keyboard- It's very simple, just asks for the month, day, and year. As long as the user enters 2-digit values, it works well... ...
0
votes
1answer
64 views

Reverse of Number.format()?

In MooTools More (1.4), there is a Number.format() function which takes a number and converts to a readable format, such as... "5,003.2" === (5003.2).format() .. considering the currently set ...
0
votes
2answers
240 views

display and input number as currency in ExtJS

I am using ExtJS 4.1, and trying to display my currency field as value / 1000, but only on display. For example, if user input 1234.56, it will appear as 1,234.56 on screen, but only when it is ...
0
votes
0answers
69 views

PHP money_format padded number grouping

Basically, I'm trying to output a bunch of numbers in a nicely aligned column formatted to look like so: $##,###.## $##,###.## With the following code setlocale(LC_MONETARY, 'en_US.utf8'); ...
0
votes
2answers
291 views

jQuery Mobile number formatting?

I am pulling in a bunch of mobile numbers from a JSON file that are pulled in elsewhere so i cannot chance the document formatting unfortunately so i have to find a work-a-round! It come in looking ...
2
votes
3answers
787 views

Excel - Variable number of leading zeros in variable length numbers?

The format of our member numbers has changed several times over the years, such that 00008, 9538, 746, 0746, 00746, 100125, and various other permutations are valid, unique and need to be retained. ...
8
votes
3answers
240 views

Formatting a number with a metric prefix? [duplicate]

Possible Duplicate: Engineering notation in C#? Whether a metric prefix is preferable to the scientific notation may be up for debate but i think it has its use-cases for physical units. I ...
1
vote
3answers
276 views

How to convert locale formatted number to BigInteger in Java?

I searched a lot but nothing helped me :( Suppose I need convert 12.090.129.019.201.920.192.091.029.102.901.920.192.019.201.920 (in Portuguese group separator: .) to BigInteger value. How to do that ...
0
votes
0answers
161 views

Excel Chart Layout 5 number formatting

I'm using excel 2007 to create charts from relatively large sets of data. The problem I'm having is that when I paste the charts into the final report that is actually sent to the client, the number ...
0
votes
0answers
419 views

excel 2010 vba number formatting is not working in excel 2003 for different regional settings

I have an Excel sheet with the values formatted using cdbl. I'm using Excel 2010 version with Windows 7. When the same sheet runs for different regional settings like Germany, the number formatting is ...
2
votes
2answers
4k views

How to format numeric field using dutch format in extjs?

i want to format number entered by user in dutch format. ie. use decimal Separator as , and thousand seperator as . blur: function () { Ext.util.Format.number(this.value, '000,000.00') } I want ...
0
votes
4answers
2k views

Add leading zero to numbers

I, need get values like 05:00, -05:00 ,when on input have number values 5, -5..If on input values like 10,-12 then don't need adding leading zeros..I can create some function which check how many ...
1
vote
2answers
826 views

DecimalFormat, how to set maximum number of integer digits via patern?

I want to format a number using DecimalFormat. The maximum number of integer (and fractional) digits must be 2. If the number is 345561.7301 the desired result would be: 61.73 This is my code: ...
1
vote
1answer
120 views

Class or function to format numbers using hash symbols

What's the easiest way to format a string based on another input string that uses hash symbols, minus, and spaces. What I have is one string that contains a phone number that might look like this (or ...
1
vote
1answer
354 views

C# .net 4 decimal to string consider numbers after point

is there framework way to know if there are numbers after point for printing. i want to show in textbox some decimal but if there is no numbers after the point the text should show int like that: ...
1
vote
4answers
358 views

Powershell - number format shows incorrect result

in powershell v2, I need to divide 22 by 8 and then strip all the decimal places after the decimal point (which is on my system a comma). No rounding. As you see. 22/8 equals 2,75 PS C:\Documents ...
2
votes
1answer
156 views

How to get DecimalFormat to display ASCII strings instead of special symbols?

While playing around with double string formatting, I noticed that, at least on my locale, the strings produced by a default DecimalFormat object are different than the ones generated by ...
0
votes
2answers
391 views

android number format for germany

is there a public algorithm that formats German phone numbers (mobile and landlines)? I saw there is a method to format phone numbers PhoneNumberUtils.getFormatTypeForLocale(Locale locale) but this is ...
1
vote
2answers
527 views

changing number format with php

sorry for my english... I have any numbers like these... 1.235,45 100,00 5,5678 25.321,10 But I need those numbers with the next format. 1235.45 100 5.5678 25321.1 Some help? Regards
4
votes
1answer
179 views

Output 1000000 as 1,000,000 and so on

While it is easy to write something that does this by myself, I often wondered if there was something like this in iomanip or somewhere. However, I never found something useful. Ideally, it'd be ...
2
votes
3answers
3k views

How to expand decimal places of a number to a minimum in Oracle PLSQL?

I cant figure out how to select the following: 123 -> 123.00000 123.12 -> 123.12000 123.123456 -> 123.123456 I would like to expand the number of decimal places to for example 5 ...
9
votes
6answers
2k views

How to format a number 1000 as “1 000”

I need a way to format numbers. I stored some numbers in my DB table, e.g. 12500, and would like to print them in this format 12 500 (so there is a space every 3 digits). Is there an elegant way to do ...
0
votes
1answer
538 views

How to put commas in numbers without using to_char?

I have variable defined as NUMBER type and it has values like 2314514512 how can I add comma to this number so that it appears like 2,314,514,512 without using to_char?
1
vote
2answers
327 views

formatting negative currency amount in objective-c

I have trouble formatting negative amounts. I have defined the following formatter : NSNumberFormatter *nf = [[NSNumberFormatter alloc] init]; [nf setNumberStyle:NSNumberFormatterCurrencyStyle]; [nf ...
2
votes
4answers
4k views

Using jQuery to display a value to 2 decimal places in an input box while retaining more precision [duplicate]

Possible Duplicate: JavaScript: formatting number with exactly two decimals Maybe I'm going about this the wrong way, but I have some javascript which is filling up some text inputs with ...
3
votes
3answers
3k views

Format a number with leading sign

How do I format in Java a number with its leading sign? Negative numbers are correctly displayed with leading -, but obviously positive numbers are not displayed with +. How to do that in Java? My ...
5
votes
3answers
3k views

SQLite function to format numbers with leading zeroes?

I’ve got an SQLite database that will need to contain products. Those products have a fixed-format composite product number, consisting of category, group and product number (cccccc.gg.ppp). Every ...
1
vote
2answers
309 views

Display a number in the style of Stackoverflow reputation

My reputation appears as 2,606. If I had more, it would look like 15.4k. If I had a lot more, it would look like 264k What's the best way to display a number in this format using Ruby?
6
votes
1answer
2k 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. ...
1
vote
2answers
668 views

adding zeros in objective-c string formats

Quick question: I am trying to fill in empty spaces with a specific number of zeroes in an NSString stringWithFormat formatting string. For example, I want: @"The number is %d", 5 // I want this to ...
0
votes
1answer
1k views

Telephone number format should be international,Is there any Regex for phone number validation in iPhone

Telephone number should be international and user has to enter the complete phone number with country code. For that I need a regex for formatting the phone number.
1
vote
3answers
2k views

How to do intelligent decimal cut off in Java?

I want to implement or use some library for an intelligent decimal cut off. I mean that I would like to get: from 3.456432 -> 3.4, from 0.0000023232432 -> 0.000002 and from 0.000000000001 -> 0.0 (or ...
1
vote
2answers
68 views

What would be a good way of determining number of decimal places from a format string?

I'd like a function that looks like this: int GetDecimalPlaces(string format, IFormatProvider formatProvider = null); The inputs would be exactly the same as those which can be legally passed to ...
0
votes
1answer
623 views

how do i print currency format in javascript

i have some price values to display in my page. i am writing a function which takes the float price and returns the formatted currency val with currency code too.. like fnPrice(1001.01) should print ...
6
votes
5answers
11k views

add commas to a number in jQuery

I have these numbers 10999 and 8094 and 456 And all i want to do is add a comma in the right place if it needs it so it looks like this 10,999 and 8,094 and 456 These are all within a p tag like ...
3
votes
2answers
6k views

XSL - rounding/format-number problem

I'm trying to get the value of a number to 2 dec places from my xml. XML:<Quantity>0.0050</Quantity> XSL:<xsl:value-of select="format-number($quantity, '####0.00')" /> However XSL ...
3
votes
2answers
1k views

double to string formatting

I have a Double value xx.yyy and I want to convert to string "xxyyy" or "-xxyy", if the value is negative. How could I do it? Regards.
2
votes
2answers
280 views

Format number as ranking position [duplicate]

Possible Duplicate: Is there an easy way in .NET to get “st”, “nd”, “rd” and “th” endings for numbers? Is there anything already built into ...
8
votes
5answers
390 views

Is there anywhere a Java library available that supports exactly the format strings of Excel?

For a Java application that drags data together from some sources and does some calculation itself, we want to offer users the possibility to use their own format strings, and would prefer the format ...
2
votes
1answer
265 views

Simple C number formatting question

This a very simple c question. Is there a way to format a float for printf so that it has xx SIGNIFICANT decimals? So I'm not talking about, say, %5.3f float, but if I had float x=0.00001899383 ...
1
vote
4answers
336 views

number increment with customized style

I've tried to do a number(decimal) increment which looks like 001 002 003...123,124 in a loop and couldn't find a simple solution.What I've thought now is to check out whether the number is long ...
77
votes
10answers
45k views

How to print a number with commas as thousands separators in JavaScript

I am trying to print an integer in JavaScript with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? Here is how I am ...
5
votes
1answer
2k views

Passing in number, Number.prototype.format

I've seen this format function referenced on several sites, but none of them have an explicit example of how to pass in a number into the function. I've tried '12345'.format('0.00') which I believe ...

1 2