欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#中String类常用方法汇总

程序员文章站 2023-12-15 08:24:04
本文实例汇总了c#中string类常用方法。分享给大家供大家参考。具体分析如下: c#中的string类很有用,下面是一些它的常用方法的总结,如果灵活运用这些的话,str...

本文实例汇总了c#中string类常用方法。分享给大家供大家参考。具体分析如下:

c#中的string类很有用,下面是一些它的常用方法的总结,如果灵活运用这些的话,string类就掌握的差不多了。

.tolower()    //转为小写字符串"abc"-->"abc"
.toupper()    //转为大写"abc" -->"abc"
.trim()       //去掉字符串首尾的空格"  abc "-->"abc"
.equals(string value,stringcomparison comparisontype);     //相等判断
//stringcomparison.currentculture
//stringcomparison.currentcultureignorecase
//stringcomparison.invariantculture
//stringcomparison.invariantcultureignorecase
//stringcomparison.ordinal
//stringcomparison.ordinalignorecase

.compareto(string value)             //与value比较大小

.split(params char [] separator)     //separator 是分隔字符,如:','、'|' 等等。    
.split(char [] separator ,stringsplitoptions  splitopt)//stringsplitoptions.removeemptyentries  
.split(string[] separator,stringsplitoptions splitopt)// 按字符串分隔

.replace(char oldchar,char newchar)  //替换字符串中的字符,如:'a'替换为'b'
.replace(string oldstr,string newstr)//替换字符串中的字符串,如:"李时珍"替换为"李秀丽"

.substring(int startindex)            //从指定序号开始,一直到最后,组成的字符串
.substring(int startindex,int length) //从指定序号startindex,连续取length个,如果超过长度会报异常

.contains(char c)      // 是否包含 字符
.contains(string str)  // 是否包含 子字符串

.startswith(string str) //是否以str开头,如:http://baidu.com就以http://开头
.endswith(string str)   //是否以str结尾

.indexof(char c)        //找到第一个字符c的index,如果没找到返回-1
.indexof(string str)    //找到第一个字符串str的位置

希望本文所述对大家的c#程序设计有所帮助。

上一篇:

下一篇: