Is there a node, or suggested function Javascript to convert European formatted numbers to North American formatted numbers.
I have some Germans trying to use some flows I built, but the number formats are causing problems with "parseFloat" commands and the JSON parse node.
So, the flows I built in North America are not parsing correctly because of the different formats for floating numbers, i.e. when "14.074,000 (eu format) is "parseFloat" in a function, we get "14" instead of "14,074.000". So, Node-Red sees the "." as a decimal, instead of a "thousand" separator.
What is a simple Javascript code to convert European to North American number format:
North American example: 14,074.000
European example: 14.074,000
Alan