Hi,
The user will entry a string such as "123456.78USD" or "9,876,543HKD". The number will be different time and the currency code will also in different code.
And, I'd like to get the number out from the string and show in currency format with currency code, how can I do that?
For example:
Input: 123456.78USD
Output: 123,456.78 USD
Input: 9,876,543HKD
Output: 9,876,543.00 HKD
Thanks!