Is it possible to change the function below to show dot as the thousand separator and comma as the decimal separator?
string frmt.formatNumber(float value)
{
formatted_number = (input.value.toString()).replaceAll(("(?<!\.\d)(?<=\d)(?=(?:\d\d\d)+\b)"),",");
return formatted_number;
}