C# 字符串操作
String.Substring()
// 格式 String.Substring(int beginIndex) String.Substring(int beginIndex,int endIndex) //示例 string str_new=str.Substring(6,2):表示从 str 中截取位置为 6 的字符开始长度为 2 的字符串,6 表示子字符的起始位置,2 表示子字符的字符长度。
其他方法
// 格式 int indexOf(String str) 返回第一次出现的指定子字符串在此字符串中的索引。 int indexOf(String str, int fromIndex) 从指定的索引处开始,返回第一次出现的指定子字符串在此字符串中的索引。 int lastIndexOf(String str) 返回在此字符串中最右边出现的指定子字符串的索引。 int lastIndexOf(String str, int fromIndex) 从指定的索引处开始向后搜索,返回在此字符串中最后一次出现的指定子字符串的索引。 int length() 返回此字符串的长度。 boolean startsWith(String prefix) 测试此字符串是否以指定的前缀开始。 boolean startsWith(String prefix, int toffset) 测试此字符串是否以指定前缀开始,该前缀以指定索引开始。 // 示例 str.Substring(0,str.LastIndexOf(","));
参考资料
http://www.blogjava.net/AndyZhang/archive/2012/04/25/376614.html http://www.cnblogs.com/rocblog/archive/2013/05/07/3064593.html http://www.cnblogs.com/Deckard/archive/2009/06/03/1495452.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
上一篇: 加密算法介绍
下一篇: 彻底找到 Tomcat 启动速度慢的元凶
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论