currency formatting of swedan and Norway

i have a problem

I am doing Internationalization of our Product in My company

In Swedan and Norway Currency thousand seprator is a special character that is a cap above letter 'a'.

I need to remove this special character from currency to store it in Normal allowed form.

I found the Unicode value of this character and then tried operations on it but these are giving result in surprising nehaviour

Plese suggest me how to remove this thousand seprator from this currency..

[512 byte] By [yogesh17a] at [2007-10-3 7:29:09]
# 1

The currency separator for Sweden and Norway is most definitely NOT "a special character that is a cap above letter 'a'". If that is how it displays for you, you are looking at it in the wrong codepage.

The standard thousand separator for those 2 countries is a space, and most APIs use the non-breaking space (not a regular space) for this separator.

one_danea at 2007-7-15 2:28:29 > top of Java-index,Desktop,I18N...
# 2
actually when i run that progarm in dos promt then it appear as letter a 'a'with a cap above it while running that program in Eclipse it appear as a space but it is not space .I tried to remove that space but that is not working if u can suggest me any way to remove that thousand
yogesh17a at 2007-7-15 2:28:29 > top of Java-index,Desktop,I18N...
# 3

Yes, as I said - you were looking at this in an incorrect code page.

I'm not sure why you want to delete the space - it should exist as display-only formatting, I assume you are not saving numbers/amounts formatted in a locale-specific way, but rather in a locale-independent, generic format. So there should be nothing to delete in your backend store.

one_danea at 2007-7-15 2:28:29 > top of Java-index,Desktop,I18N...