Region specific information

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Region specific information

KlausK
Hi,
I am looking for a solution to switch the symbols in currency or float
input.
I would prefer $. as delimiter for tousand and $, as delimiter for the
presition.
Cheers


Reply | Threaded
Open this post in threaded view
|

Re: Region specific information

ChanHong Kim
Use should use Locale class and its methods.

currencySymbol := Locale default currency.

Above code get currency code for current locale.
As I'm living in Korea, I have goten Symbol 'Won'.


Reply | Threaded
Open this post in threaded view
|

Re: Region specific information

KlausK


Reply | Threaded
Open this post in threaded view
|

Re: Region specific information

KlausK
In reply to this post by ChanHong Kim
thank you for replying. I will have a look on it...