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]

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.
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.