码迷,mamicode.com
首页 > Windows程序 > 详细

C#中字符串常用方法

时间:2019-09-28 19:50:09      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:last   区别   index   --   equal   string   news   ring   技术   

技术图片

string str = "123@163.com";

int index = str.IndexOf(‘@‘); // 返回3  从左向右第一个@

int index = str.LastIndexOf(‘3‘); // 返回6  从右向左第一个3

string newStr = str.SubString(4); //从第4个字符开始截取 返回@163.com

==和Equals:==判断引用的地址,Equals判断值,c#会把所有值相同的字符串指向同一个地址,两者的结果没有区别

string[] strs = {"1","2","3"};

string newStr = string.Join("-",strs); //返回 1-2-3

string[] newStrs = newStr.Split(‘-‘); //返回数组{"1","2","3"};

C#中字符串常用方法

标签:last   区别   index   --   equal   string   news   ring   技术   

原文地址:https://www.cnblogs.com/1016391912pm/p/11604460.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!