I am using VB.Net (.Net version 2) to create a web application.
I have several pages showing numeric results that can be in the form -
"< 0.01"
"1.345345"
"1,3424.06"
etc...
I was wondering what the easiest way would be to change these results to other culture formats e.g.
"1.2" could become "1,2" for countries that use a comma instead of a period.
Is there an easy way to this for all types of numbers? So what ever type of number I pass in it will correct all culture variations.
I have several pages showing numeric results that can be in the form -
"< 0.01"
"1.345345"
"1,3424.06"
etc...
I was wondering what the easiest way would be to change these results to other culture formats e.g.
"1.2" could become "1,2" for countries that use a comma instead of a period.
Is there an easy way to this for all types of numbers? So what ever type of number I pass in it will correct all culture variations.
Comment