0
votes
5answers
36 views

if a number has .00 how can you remove it?

I've been looking around for this answer and there are some alternatives. Unfortunately none of them makes sense to me :( I am working on an e-commerce website where they the product price ...
1
vote
3answers
55 views

Adding decimal numbers to a decimal number not working properly in python [duplicate]

I'm trying to add decimal numbers a decimal number and it works correctly but when I do 1.1 + 0.1 I get 1.2000000000000002 but all I want it to equal to is 1.2. When I do 1.0 + 0.1 I get 1.1 which is ...
3
votes
2answers
69 views

Find the number of digits in the fractional part of a Decimal number in python

Given a Decimal number in python how can I find the number of digits past the decimal point? assert digits(Decimal('1.2345')) == 4 assert digits(Decimal('1000')) == 0 assert ...
0
votes
2answers
26 views

validate numbers by limitation in lenght and true decimal format

I want validate numbers by regular expression my valid numbers is : 123456789012345.123 or 123.9 or 0.686 before decimal point must be 1 to maximum 15 numbers and after it must be maximum to 3 ...
0
votes
0answers
50 views

jquery doesn't detect a change event in text boxes for fractional value changes?

I am using jQuery and created a change listener on some text boxes that hold numeric values with 2 decimal places, if the integer part is changed then an event is triggered, if one of the decimal ...
1
vote
1answer
70 views

Is there a Backbone-way to format numbers in the view?

Is there a special backbone-Way to format numbers? I want to display them with two decimal points, like "2" into "2.00". Should this be done in the tepmlate? This is one example from the template: ...
1
vote
1answer
36 views

allow input to be 2.d.p, if not prompt error msg

I want to make sure that when the user inputs the exchange rate and amount, he can only input it to 2.d.p, if the input is not 2.d.p then there must be a error message. How can i do this without ...
1
vote
3answers
40 views

Python 3.0+ setting to max 4 decimal and rounding

So I have an assignment to match an expected output: 34.7381. But I am getting 34.73809999999999. I realize that it is just a rounded number with only 4 decimal places but I have no clue how to that ...
0
votes
2answers
184 views

Decimal point in calculations as . or ,

If I use decimal pad for input of numbers the decimal changes depending of country and region format. May be as a point "." or as a comma "," And I do not have control over at which device the app is ...
1
vote
0answers
133 views

Android EditText for Decimal Values does not allow changing mantissa

In my android application I use an EditText for decimal values: <EditText android:id="@+id/valueEditor" android:layout_width="match_parent" ...
5
votes
2answers
131 views

A way of writing large numeral literals in C#

I have a method like this: Prefix GetPrefix(decimal value) { if(value > 11000000000000000000) return Prefix.CosmicBig; if(value > 1000000000000000) return ...
0
votes
1answer
81 views

Inserting float number in mysql

hello im trying to insert number copied from another website through crawl method. For example thats the number im trying to insert: 140.000 so i made a table with the next info: Create table IF ...
-1
votes
2answers
149 views

convert extremely large decimal to bytes

How do I convert extremely large (>1MB) decimal numbers to bytes/hex/binary? For example, the number "300" should be converted to {0x01, 0x2C}. The byte order doesn't matter and {0x2C, 0x01} is also ...
4
votes
5answers
386 views

Remove useless zero digits from decimals in PHP

I'm trying to find a fast way to remove zero decimals from number values like this: echo cleanNumber('125.00'); // 125 echo cleanNumber('966.70'); // 966.7 echo cleanNumber(844.011); // 844.011 ...
0
votes
0answers
41 views

Formatting numbers as decimals in Rails [duplicate]

Possible Duplicate: Ruby Regex to round trailing zeros I have a decimal column (precision: 8, scale: 2) in my DB table, and I am looking for an easy way to format the numbers as below: # ...
0
votes
2answers
86 views

Only use right most decimal point for Number Value, remove the rest

When a User accidentally enters two more more decimal points, I want to only use the Right Most decimal point. So: 1234..55 would equal 1234.55 It's easy to make typos, but I have not seen any good ...
0
votes
3answers
84 views

Working with decimals in javascript

I have a javascript function that converts feet into a usable object that will take the total feet and break it down into feet / inch / fraction. In the example below the decimal fraction portion ...
-4
votes
2answers
120 views

Convert from very small decimal number to 100 form? [closed]

Assume that number is : 2.4181815943539558E-14 or 0.00000000000002418182 is there a possible to convert or display it into 100 form like the number between 1 - 100 rather then just show 0 only?
0
votes
1answer
1k views

Number of decimal digits in Oracle SQL Developer query result sheet

The Date format can be customized in Oracle SQL Developer, how Decimal format can be specified? By that I mean number of decimal digits. In Tools>Preferences>Database>NLS we only have decimal ...
0
votes
2answers
92 views

How can I work with decimals in javascript?

For the last hour I've tried several different solutions but none have solved my problem. I have various input fields containing a decimal number (price of product) e.g. 98.00. Looping through a ...
0
votes
0answers
252 views

decimal real numbers into binary real numbers

I have tried to convert this number and every time I check it on the calculater its gives me a different answer. Can anyone explain this? My 8bit numbers = 58927634 Final binary = 0011 1000 0011 ...
-3
votes
1answer
134 views

Subtract string into a valid decimal [closed]

I'm writing an import function for an application. One off the rows contains an amout. In this format: 0000090000 When using Convert.ToDecimal("0000090000") that will give me an deciamal with the ...
0
votes
1answer
231 views

How can i get Oracle number values to .NET without Zeros?

i try to read Data from an Oracle-Database. The problem is that in some cases the receiving data adds Zeros after the digit and i dont know why this happens?!? For example i want to read Data like ...
0
votes
2answers
300 views

How can i parse this data in C# that is coming from a data table

I have the following C# code that reads in data from a datatable (which was original constructed from an Excel spreadsheet) private byte GetVal(DataRow dataRow, string caption) { var ...
0
votes
1answer
483 views

Crystal reports 2008 Mod / Remainder on decimal numbers

I did a lot of searching around on this but still have not been lucky enough. I understand that by default MOD / REMAINDER functions in Crystal Reports is meant for Integers. What is the way out to ...
4
votes
3answers
323 views

Will my iOS app calculate figures when a comma is used instead of a decimal point?

New to iOS development and I'm just making a little wage-type calculator for a starter. I'm exploring different features, including making the app available in France and other non-English native ...
0
votes
1answer
217 views

How can I construct a finite automaton for even decimal numbers?

I have to do this exercise and am completely stumped as to how. I've constructed some FA's before, but using binary numbers. How can I do this but for even decimal numbers?
0
votes
5answers
179 views

php input with 1 decimal number

all, I'm making a shopping cart that only accept input number with 1 decimal place. The following is piece of code I get from a library (with some modification): $items['qty'] = ...
0
votes
2answers
186 views

Comparing numbers with decimals

I have an issue in AS3 where I need to compare a number of value type Number. I have two Numbers. For example, 3.10 and 3.9 Comparing the two, 3.9 is greater than 3.10 because it drops the 0 and its ...
4
votes
4answers
781 views

Javascript: How to retrieve the number of decimals of a string number?

I have a set of string numbers having decimals, for example: 23.456, 9.450, 123.01... I need to retrieve the number of decimals for each number, knowing that they have at least 1 decimal. In other ...
1
vote
3answers
302 views

decimal numbers conversion

In bash I am trying to code a conditional with numbers that are decimals (with fractions). Then I found out that I cannot do decimals in bash. The script that I have is as follows: a=$(awk '/average ...
2
votes
3answers
2k views

Round to .5 or 1.0 in SQL

I'm looking to round values like 2.3913 -> 2.5 4.6667 -> 4.5 2.11 -> 2 How can I manage this in SQL? Thanks
0
votes
2answers
117 views

How to check if a division with bcdiv() will produce a finite result?

I'm building a class for working with arbitrary precision decimal numbers in PHP, using the BCMath library internally. When adding, subtracting, or multiplying two numbers, it is possible to forecast ...
0
votes
3answers
128 views

Format a string which contains numbers

I have several strings which contain numberic values. I'd like to format these strings so that the numeric values have 1 or 2 decimal places. Eg. One string might contain the value - "345.98765" ...
0
votes
1answer
192 views

Decimal numbers cutting

I put a number in EditText line and it counts a double value in another. But the double value of 4.8 should be 9.6 and not 9.6000000381469727. I know it is normal for float but I would like to cut the ...
-1
votes
2answers
134 views

Append a zero to the left of a decimal number for money?

I am trying to display money numbers to users in a readable format. At the moment the output is like so: £ .70 I would like to make this £ 0.70 As it is more readable and there is less ...
1
vote
1answer
456 views

RegEx to convert number to comma separated numbers with optional two decimal places

I am looking for a regular expression which will convert any amount value like 123/123.34/12345.99 will convert to a comma separeted value like 123/123.34/12,345.99. I am going to use this regular ...
1
vote
3answers
1k views

Mongodb PHP - Integers with decimals

This is a follow up to another post i made about inserting an integer into mongodb. I have this working just fine by using the (int) but now when it inserts the number into the db is strips ...
1
vote
1answer
980 views

Excel Print number with correct decimal Seperator

I use the print function to export a Cell Value to csv file. I use this macro on several PCs with different Localization Settings. The problem i am experiencing is, that on some PCs the Output is 4,11 ...
2
votes
1answer
379 views

How to compare numbers with 2 decimal places in VB.NET

I'm trying to compare Office version numbers in vb.NET How can I determine if: 12.0.64 is greater or less than say 12.0.62 or 14.0.4762 It seems the fact that there is 2 decimals, vb doesn't like ...
0
votes
1answer
399 views

How to convert decimal to Variable Byte code & gamma code

How do you convert the decimal number 777 to the equivalent VB & gamma codes? I've been reading up on gamma codes. I see where they get the unary codes from the decimal but not where the length ...
0
votes
5answers
646 views

Show decimal point number in PHP

I hold decimals in a database using DECIMAL(10,5) I would like to format these numbers according to a few rules: A zero decimal should display as 0 Show a long decimal (no trailing zero's) with all ...
6
votes
2answers
256 views

Regex: Lookahead and lookbehind, checking a . (dot) for use as decimal vs full-stop

I've had a good look around the net for an answer to this, but can't seem to get it working. I have developed the following regex: (?<![^\d][\\])[\.](?![\d]) The objective is to identify any ...
3
votes
1answer
410 views

How to display a number with many decimal places? (Java)

I was wondering if there is a way to "cheat" and work with numbers with way more decimal places than a double in Java, and then display it via [Graphics Object].drawString(number, 10, 10); Can I do ...
5
votes
1answer
1k views

How can I make the HTML5 number field display trailing zeroes?

I have a field: <input type='number' /> I'd like to punch in 0.50 without it “correcting it” to 0.5, so it would display 0.50.
1
vote
4answers
128 views

What should i have to change in that function to get the 0.00 like effect?

For to get the fraction point value upto two decimal Point i use this function. double roundTwoDecimals(double d) { DecimalFormat twoDForm = new DecimalFormat("##.##"); ...
10
votes
2answers
537 views

Dividing decimals yields invalid results in Python 2.5 to 2.7

After a very thorough read of the Python's decimal module documentation, I still find myself puzzled by what happens when I divide a decimal. In Python 2.4.6 (makes sense): >>> import ...
0
votes
1answer
256 views

How to convert integer to decimal point in PROLOG?

How to convert integer to decimal point in PROLOG? Example, imagine I assign Integer = 10 How do I change integer's value to turn to 1.0 (1 decimal point) ?
4
votes
2answers
2k views

iPhone Web App Number Pad with Decimal

Im struggling to find an answer for this one. I've found out how to make the keypad appear on a web app using the pattern string [0-9]* but that just shows the digits without a decimal! Anyone got a ...
2
votes
3answers
634 views

MySQL - storing numbers with decimal point

exist any way to store in database a numbers with or without decimal point? The user can store to database numbers like 10 and 10.1 - for storing numbers in MySQL I use data type column decimal, so ...

1 2