str.Replace('k','a');
string类的几个比较常用的函数
Replace(string1,string2)
返回 一个把string1替换成string2后新的string
indexof(int ch)
返回一个字符在文符串中的首次出现的位置,如果没有这个字符则返回-1
substring(int beginindex)
返回的是在一个字符串中从beginindex指定的数值到末尾的一个字符串,
substring(int beginindex,int endindex)
返回的是当前字符串中从beginindex开始到endindex-1结束的一个字符串
希望对你有用 |