1.字符串以","(注意中英文)拼接 2.去掉最后","3.再使用split分隔放在数组中,4在循环遍历数组使用
方法一:str=str.Remove(str.Length - 1); 或者str=str.Substring(0.str.Length - 1)
string [] arrystr=str.Split(',')
for(int i=0;i<arrystr.Length;i++)
{ 相应操作 }
方法二:string [] arrystr=str.Split(',')
for(int i=0;i<arrystr.Length;i++)
{ if(arrystr[i]!=""){相应操作} }
总结: 比较两者,如果调用他人的方法,截取方式可能不准确,此时使用后者较合适,从效率上讲,后者占优