当前位置:Gxlcms > asp.net > 获取字符串数组的最后一段字符

获取字符串数组的最后一段字符

时间:2021-07-01 10:21:17 帮助过:50人阅读

10000,20,30|8000,50,60|6000,80,90|4000,110,120|100,

对于这样一个字符串,取得最后的一个“100”。
string a; 
string str = "10000,20,30|8000,50,60|6000,80,90|4000,110,120|100,";
a = str.Replace('|', ','); 
string[] b = a.Split(','); 
int jifen = Convert.ToInt32(b[b.GetUpperBound(b.Rank-1)-1]);

人气教程排行