This is a discussion on Convert float to string within the C# Programming forums, part of the Software Development category; Hi, I think most of us intially will stuck a little bit to convert string to float.Here is the ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi, I think most of us intially will stuck a little bit to convert string to float.Here is the coding to convert string to float. float resultValue= float.Parse(string _value); Cheers ![]()
__________________ Sathish Kumar.R ![]() Knowledge is meant to SHARE |
| Sponsored Links |
| |||
| Hi buddy, U hv started ur thread as "Convert Float to String". But u explained about String to float....(smile) ok..I hv one doubt..if u can, clear me... I'm going to convert my string to float as follows(as ur way). Code: string s = "141781.23"; float f = float.Parse(s); I need the exact figure...why this is happening.... help me.... Regards, M.Sundaram. |
| |||
| You can use double for float. Double better for ur query bcoz floats in c# are only precise to 7 digits… So use System.Convert.ToDouble(string stringValue)…. ![]() From ur code use this… ![]() string s = "141781.23"; double d = double.Parse(s);
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Convert String to Date: new Date(string) | oxygen | Flash Actionscript Programming | 3 | 03-07-2008 09:24 PM |
| convert a text string into a Date object. | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 02-12-2008 06:37 AM |
| How do I convert a Number into a String with exactly 2 decimal places? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 10-26-2007 05:22 AM |
| Need Help: convert string to unknown class object c#? | a.deeban | C# Programming | 0 | 08-16-2007 05:18 AM |
| convert ordinary string into XML | Jeyaseelansarc | HTML, CSS and Javascript Coding Techniques | 0 | 08-14-2007 03:18 AM |