How to format number / currency for regions

Is there a simple way to format thousand separator for numbers and currency?

I’m using the number pipe
amount | number : ‘1.0-0’

But his returns the amount in this way 1,000 but I want it to retun 1.000
(Dot instead of comma as a separator)

Any help appreciated

Best regards

Maybe the Globalization plugin will help here. Ray Camden has some excellent resources online about it.

Chris

amount / 1000 | number : ‘1.0-0’