Replace the "." with "/" only in the display of decimal numbers

Hi everyone

I want to replace the “.” with “/” only in the display of decimal numbers. I swapped the dot and slash in
Window.format_number
in
number_format.js
, but the issue is that in the doctypes for the qty field, after the change, it mistakenly interprets it as division, resulting in incorrect numbers. How can I fix this issue and only swap these two characters in the display of decimal numbers?
12.5 —> 12/5

Hi,

Try escaping the character: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Regular_expressions/Character_escape

Disclaimer , I am not js fluent.