去除首字符
1.json = json.Substring(1, json.Length-1);
2.strInfo = strInfo.Remove(0, 1);
去除尾字符
1.json = json.Substring(0,json.Length-1);
2.strInfo = strInfo.Remove(strInfo.Length - 1, 1);本文共 235 字,大约阅读时间需要 1 分钟。
去除首字符
1.json = json.Substring(1, json.Length-1);
2.strInfo = strInfo.Remove(0, 1);
去除尾字符
1.json = json.Substring(0,json.Length-1);
2.strInfo = strInfo.Remove(strInfo.Length - 1, 1);转载于:https://www.cnblogs.com/Agreoself/p/10911019.html