How to display 1.234.567.890,00 from 1234567890 ?

Given a decimal value (e.g. 1234567890) I want to print this number with grouping delimiters (european style with dots: 1.234.567.890,00 and not US style 1,234,567,890.00) How can I do this in perl? Jason