Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6752365
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:02:10+00:00 2026-05-26T13:02:10+00:00

I have a string which contains the graph data something like this.. string sGraph

  • 0

I have a string which contains the graph data something like this..

string sGraph = "0.05 /m 0.05 /m 0.05 /m 0.05 /m 0.05 /m 0.05 /m 0.05 /m 0.05....... 0.05 /m";

I have to extract the double value in a double[] or into a List for further processing. For ex. I use the

List<String> sGraphPoints = Regex.Split(sGraph, " /m").ToList<string>();

to retrieve the double values in a string list. I can then use each value from the string list for further processing. Is there an efficient way where i can do the same, instead of casting each string variable value into double as shown below…

double[] dGraphPoints = new double[sGraphPoints.Count];
            int i = 0;
            foreach (string str in sGraphPoints)
            {
                if (str != "")
                {
                    dGraphPoints[i] = double.Parse(str);
                }
                else 
                {
                    dGraphPoints[i] = 0.0;
                }

               i++;
            }

Many thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T13:02:11+00:00Added an answer on May 26, 2026 at 1:02 pm
    double[] dGraphPoints = sGraph.Split("/m")
                                  .Select(s => s.Trim())
                                  .Where(s => !string.IsNullOrEmpty(s))
                                  .Select(s => Double.Parse(s))
                                  .ToArray()
    

    This is only slightly more ‘efficient’ because it’s not using Regex and it’s not creating an extra list in between.

    But really, it comes down to what are you using the values for? You might be able to modify the where clause to only select values you’re interested in, but I wouldn’t know what those would be.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string which contains binary data ( non-text data ). How do
The variable filepath which is a string contains the value Música . I have
I have a string which contains the text of an article. This is sprinkled
I have a string which contains (the digits of) an integer value, and I
I have a String which contains a number and I would like to multiply
I've a string which contains many fields I'd like to extract from it. These
I have string which contains something about amount 3 val 6, amount 7 val
I have a string which contains multiple ip addresses like so: String header =
I have an XML string which contains Dates formatted dd/MM/yyyy hh:mm:ss. I'm loading this
How to load into ImageView if I have string which contains image position on

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.