C# 字符串Trim进阶

Posted zhang1f

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 字符串Trim进阶相关的知识,希望对你有一定的参考价值。

private void button1_Click(object sender, EventArgs e)
        //去掉字符串头尾指定字符
            string MyInfo= "--中华人民共和国--";
            //显示 "中华人民共和国"
            MessageBox.Show(MyInfo.Trim(new char[1]  - ), "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);            
            MyInfo = ",-中华人民共和国-,-";
            //显示 "中华人民共和国"
            MessageBox.Show(MyInfo.Trim(new char[2]  -, , ), "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);                        
            MyInfo = "--中华人民共和国--";
            //显示 "中华人民共和国--"
            MessageBox.Show(MyInfo.TrimStart(new char[1]  - ), "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);                        
            MyInfo = ",-中华人民共和国-,-";
            //显示 "中华人民共和国-,-"
            MessageBox.Show(MyInfo.TrimStart(new char[2]  -, , ), "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);                        
            MyInfo = "--中华人民共和国--";
            //显示 "--中华人民共和国"
            MessageBox.Show(MyInfo.TrimEnd(new char[1]  - ), "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);                        
            MyInfo = ",-中华人民共和国-,-";
            //显示 ",-中华人民共和国"
            MessageBox.Show(MyInfo.TrimEnd(new char[2]  -, , ), "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);                        
        

 

原文:https://www.cnblogs.com/Scholars/p/9162598.html

 

以上是关于C# 字符串Trim进阶的主要内容,如果未能解决你的问题,请参考以下文章

C#进阶系列13 字符字符串和文本编码

C# 中从字符串中修剪换行符的最简单方法是啥?

c# (字符串)

C# 语言 类

c#类

C#语言——类