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);

转载于:https://www.cnblogs.com/Striveyoungfellow/p/11212249.html

    原文作者:weixin_30659829
    原文地址: https://blog.csdn.net/weixin_30659829/article/details/97510139
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞