C#取⼀个字符串的左边或右边的n个字符⼀、函数
1、c#中如何取字符串最左边和最右边的n个字符??
string left = str.Substring(0, n);
字符串截取逗号前面的string right = str.Substring(str.Length - n);
2、去掉左边N个字符
string right = str.Substring(N);
⼆、举例
⼀、如果字符串a="1,2,3,4," 我想取a除了最右边的逗号的字符,即我想让a="1,2,3,4" 。该怎么写?
1、a.Substring(0,a.Length()-1);
2、a.remove(a.length-1,1);
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论