Replace comma with dot in a input Javascript

Hodorogea Alexandru

How to replace automatically all commas from a input with dots?

I have this input:

<input type="text" id="test" onChange="testfunc()"> </input>

And this is my work so far:

function testfunc() {
  var testnr = document.getElementById("test").value;
  testnr = testnr.replace(/,/g, '.');
}
Ismail RBOUH

testnr will store the value, so this testnr = testnr.replace(/,/g, '.'); will only change the value without changing the ÌNPUT, please try this:

<input type="text" id="test" onchange="this.value = this.value.replace(/,/g, '.')"/>

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Replace comma with dot in a input Javascript

From Dev

javascript replace comma with dot / paypal

From Dev

Replace ,(comma) by .(dot) and .(dot) by ,(comma)

From Dev

Replace dot with comma on SELECT

From Dev

Need to replace "comma" with 'dot'

From Dev

how to replace comma with dot

From Dev

replace comma to dot in perl array

From Dev

match float with comma and then replace comma with dot?

From Dev

Replace a dot with a comma inside a jQuery template

From Dev

replace comma with dot in scientific notation in r

From Dev

Replace comma with a dot while typing jQuery

From Dev

In Java, convert the dot to comma in DecimalFormat replace method

From Dev

How to replace number dot (.) with a comma (,) using java

From Dev

Replace a dot with a comma inside a jQuery template

From Dev

How to replace dot with comma in price format in php

From Dev

How can i replace dot with comma in iReport?

From Dev

Decimalformat: unwanted replace of dot with comma in JTable

From Dev

Replace dot character once entered by a comma in jquery

From Dev

Best way to replace comma with a dot jquery

From Dev

What determines if input values are output with a dot or a comma?

From Dev

AngularJS decimal input: change comma to dot

From Dev

Number input replacing decimal comma with dot

From Dev

Disable input dot '.' javascript

From Dev

Difference between decimal number with comma and dot Javascript

From Dev

JavaScript to allow only numbers, comma, dot, backspace

From Dev

JavaScript replace all comma in a string

From Dev

Replace multiple dots and comma javascript

From Dev

Replace the decimal dot with a comma on an axis in D3?

From Dev

Replacing comma by dot only in numbers in a texteditor using search and replace function

Related Related

  1. 1

    Replace comma with dot in a input Javascript

  2. 2

    javascript replace comma with dot / paypal

  3. 3

    Replace ,(comma) by .(dot) and .(dot) by ,(comma)

  4. 4

    Replace dot with comma on SELECT

  5. 5

    Need to replace "comma" with 'dot'

  6. 6

    how to replace comma with dot

  7. 7

    replace comma to dot in perl array

  8. 8

    match float with comma and then replace comma with dot?

  9. 9

    Replace a dot with a comma inside a jQuery template

  10. 10

    replace comma with dot in scientific notation in r

  11. 11

    Replace comma with a dot while typing jQuery

  12. 12

    In Java, convert the dot to comma in DecimalFormat replace method

  13. 13

    How to replace number dot (.) with a comma (,) using java

  14. 14

    Replace a dot with a comma inside a jQuery template

  15. 15

    How to replace dot with comma in price format in php

  16. 16

    How can i replace dot with comma in iReport?

  17. 17

    Decimalformat: unwanted replace of dot with comma in JTable

  18. 18

    Replace dot character once entered by a comma in jquery

  19. 19

    Best way to replace comma with a dot jquery

  20. 20

    What determines if input values are output with a dot or a comma?

  21. 21

    AngularJS decimal input: change comma to dot

  22. 22

    Number input replacing decimal comma with dot

  23. 23

    Disable input dot '.' javascript

  24. 24

    Difference between decimal number with comma and dot Javascript

  25. 25

    JavaScript to allow only numbers, comma, dot, backspace

  26. 26

    JavaScript replace all comma in a string

  27. 27

    Replace multiple dots and comma javascript

  28. 28

    Replace the decimal dot with a comma on an axis in D3?

  29. 29

    Replacing comma by dot only in numbers in a texteditor using search and replace function

HotTag

Archive