码迷,mamicode.com
首页 > 其他好文 > 详细

String 常用方法

时间:2018-03-23 11:36:38      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:AC   string   开始   tar   参数   blog   wstring   tin   gpo   

// 不会改变原字符串
string.substring(startIndex, endIndex) —— 根据头尾位置返回一个字符串 string.substr(startIndex, length) —— 根据头位置与长度返回一个字符串 string.indexOf(
"s",index) —— 从字符串头部开始,返回某字符在字符串中的索引,第二个参数指定从哪个索引开始检索 string.lastIndexOf("s",index) —— 从字符串尾部开始,返回某字符在字符串中的索引,第二个参数指定从哪个索引开始检索 string.match(pattern) —— 字符串根据正则返回数组 string.search(pattern) —— 字符串根据正则返回第一个匹配项的索引 string.replace(oldstring.newstring) —— 只替换第一个符合的,如果替换全部则第一个参数需要使用正则

 

String 常用方法

标签:AC   string   开始   tar   参数   blog   wstring   tin   gpo   

原文地址:https://www.cnblogs.com/founderswitch/p/8628811.html

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