1、字符串编码转换
//这个方法将gb2312编码的字符串转为latin1(iso8859-1)编码的字符串
private string convertstring(string srcstring)
{
return system.text.encoding.getencoding("iso8859-1").getstring(system.text.encoding.getencoding("gb2312").getbytes(srcstring));
}
2、将字符串分割为字符串数组
string stringvalue = "1,2,3,4,5,6,7,8,9,10";
string[] stringarry = stringvalue.split(',');
3、在字符串指定位置插入指定字符
string a = "abc.gif";
string b = a.inert(a.lastindexof('.'),"_");
//b的结果为:abc_.gif
4、截取文件扩展名
string filename = "abcdefg123456.jpg";
string result = filename.substring(filename.lastindexof(".")+1);
//result的结果为jpg
新闻热点
疑难解答