How to parse double values from array of strings in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] arr = new string[]
            {
                "3.14",
                "1.00",
                "1,000.00",  
	            "0.3",
                "0.301",
                "0.39",
                "00.001", 
	            "-0.01",     
                "-9.13",
                "0.0",
                "0",
                "         0",
                "1000000000"
	        };

            foreach (string s in arr)
            {
                double d = double.Parse(s);
                Console.WriteLine(d);
            }
        }
    }
}


/*
run:
  
3.14
1
1000
0.3
0.301
0.39
0.001
-0.01
-9.13
0
0
0
1000000000

*/


 



answered Jan 12, 2017 by avibootz

Related questions

1 answer 143 views
1 answer 149 views
2 answers 114 views
114 views asked Feb 1, 2023 by avibootz
1 answer 219 views
2 answers 248 views
1 answer 238 views
...