|
|
|
Convert Decimal to Comma (EU)
Added on 5/17/2005
|
This will convert the decimal in a number or string containing a number to the EU standard comma.
on decimalToEU (theInput)
theInput = string(theInput)
put "," into theInput.char[offset(".", theInput)]
return theInput
end
|
|