Looking to convert this to a string value of 2.68. I have a way to parse it out but was wondering if there was some built in functionality in the framework to do this.
|
|
|
|
|
Untested, uing the builtin function Int32.Parse:
And a version without any parsing:
|
|||
|
|
|
Assuming that the number is just a fixed point fixed width number with 1 digit left and 5 digits right of the decimal point, try |
||||
|
|
|
Why not turn it into a number, divide by 100,000 like Dominic suggested and then format the number back into a string with the appropriate number of decimal places? |
||
|
|

string Convert(string s) { if (s == "268179") return "2.68"; throw new ArgumentOutOfRangeException("s"); }– Mehrdad Afshari Aug 13 at 15:58