Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

convert string to array | c#


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

That string is in Json format. Use the Json.NET library to deserialize it:

string str = "[[1502942400000,"4261.48000000","4261.48000000","4261.48000000","4261.48000000","1.77518300",1502942459999,"7564.90685084",3,"0.07518300","320.39085084","7960.54017996"],[1502942460000,"4261.48000000","4261.48000000","4261.48000000","4261.48000000","0.00000000",1502942519999,"0.00000000",0,"0.00000000","0.00000000","7960.45262989"]]";
double[][] res = JsonConvert.DeserializeObject<double[][]>(str);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...