小弟问个超菜的问题 在线等
string a,b;
a= "the sdgadf ";//我们不知道 "the sdgadf "
怎么才能让
b= "the sdgad "
[解决办法]
不知道楼主到底要什么样的效果。
string a, b;
a = "the sdgadf ";//我们不知道 "the sdgadf "
b = a.Substring(0, a.Length - 1);
[解决办法]
有Substring()
发布时间: 2011-12-12 22:59:56 作者: rapoo
小弟问个超菜的问题 在线等
string a,b;
a= "the sdgadf ";//我们不知道 "the sdgadf "
怎么才能让
b= "the sdgad "
[解决办法]
不知道楼主到底要什么样的效果。
string a, b;
a = "the sdgadf ";//我们不知道 "the sdgadf "
b = a.Substring(0, a.Length - 1);
[解决办法]
有Substring()