本文主要是介绍今天项目用到了字符串处理,简单整理下几个常用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- 取字符串的前i个字符
str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); - 去掉字符串的前i个字符:
str=str.Remove(0,i); // or str=str.Substring(i); - 3从右边开始取i个字符:
str=str.Substring(str.Length-i); // or str=str.Remove(0,str.Length-i); - 4 从右边开始去掉i个字符:
str=str.Substring(0,str.Length-i); // or str=str.Remove(str.Length-i,i); - 如果字符串中有”abc”则替换成”ABC”
str=str.Replace(“abc”,”ABC”);
这篇关于今天项目用到了字符串处理,简单整理下几个常用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!