[Solved] how can i get string between two commas? [closed]


To take your question literally, you could do write a method to split the string by comma and just take the element at the 5th index:

string ParseData(string data)
{
    return data.Split(',')[5];
}

So you’ll be able to do something like:

string data = "43965.96000,16933.986,404689.986,5814892.171,77.464,52.47585589,13.59670032,77.464,0.675,-0.223";

string result = ParseData(data); // Result = "52.47585589"

solved how can i get string between two commas? [closed]