Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 990027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:53:05+00:00 2026-05-16T05:53:05+00:00

How can i program this, the decimal shift needs to be programed that most

  • 0

How can i program this, the decimal shift needs to be programed that most of it I think , the rest would be just a normal add, any thoughts on how to program this? This is for an incrementer I’m building, the user can press plus or minus and increment a text input.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T05:53:06+00:00Added an answer on May 16, 2026 at 5:53 am

    I assume you’re referring to the use of a comma , as a decimal separator instead of a ..

    If there are no other commas used as separators in the number (I don’t know what is used for thousand separators in that case), then you could try something like this:

    Try it out: http://jsfiddle.net/yuEAs/

    HTML

    <input id='one' type='text' value='12,34' /><br>
    <input id='two' type='text' value='43,21' /><br>
    <input id='result' type='text' /><br>
    <div id='click'>Click to add</div>
    

    jQuery

    $('#click').click(function() {
           // Replace comma separators with point separators, and parseFloat the result
        var one = parseFloat($('#one').val().replace(',','.'));
        var two = parseFloat($('#two').val().replace(',','.'));
           // Add the numbers
        var result = one + two;
           // Convert the result to a string, and revert the decimal separator back
        $('#result').val( result.toString().replace('.',',') );
    });
    

    ​I don’t have any experience with this, so maybe there’s a better way.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone explain to me why this program: for(float i = -1; i <
Can you help de-bug this program. I have it almost perfect but when I
Can anyone explain the output of this program and how I can fix it?
How can I implement generics in this program so I do not have to
can any one give me the dry output for this program? #include <stdio.h> main()
Running this program is printing forked! 7 times. Can someone explain how forked! is
How does this program access other processes memory? How can it write into the
I didn't remember the name of this program. But i can remember how it
I have a table like this: Application,Program,UsedObject It can have data like this: A,P1,ZZ
How can I include foo() function of foo.c in this small program (sorry for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.