正则API
2018-07-26 本文已影响0人
常婧帅
API
toUpperCase 转大写
toLowerCase 转小写
slice(starti,endi+1)
concat();
substring();
1)不支持负数
substr();
indexof(); 查找一个关键词出现的位置 找不到返回-1
lastindexof(); 查找上一个关键词出现的位置 找不到返回-1
字符串中的正则API
1、search(); 查找符合正则的字符 找不到返回-1
2、match(); 获得所有正则匹配的关键词
1)g表示匹配全部
2)i表示忽略大小写
3、replace(); 替换
4、split(); 切割