1.length:能获取字符串的长度
2.indexof:找到首个索引出现的位置
3.lastindexof:找到最后一个索引出现的位置
4.search:搜索特定值的字符串。返回其位置
5:提取部分字符串的方法:slice:(start,end) substring(start,end) substr(start,length)
6:replace:转换指定的字符
7:concat:两个或者多个字符串链接
8:trim:去掉两边空白
9:splice:将字符串转换为数组
1.length:能获取字符串的长度
2.indexof:找到首个索引出现的位置
3.lastindexof:找到最后一个索引出现的位置
4.search:搜索特定值的字符串。返回其位置
5:提取部分字符串的方法:slice:(start,end) substring(start,end) substr(start,length)
6:replace:转换指定的字符
7:concat:两个或者多个字符串链接
8:trim:去掉两边空白
9:splice:将字符串转换为数组