增加
concat()
var a = 'hello'
var b = "world"
console.log(a.concat(b));
截取
slice(1,4)截取字符串中的某一段从下标1到下标4
substr(1,4)从下标1开始获取4位
substring(1,4)截取字符串中的某一段从下标1到下标4
split()将字符串分割成字符串数组
console.log(arr.slice(0)); // hello
console.log(arr.slice(1,3)); // el
console.log(arr.substr(1,3)); // ell
console.log(arr.substring(1,3)); // el
var str = "hello"
console.log(str.split()); // 将字符串转为数组 ["hello"]
console.log(str.split("")); // ["h","e","l","l","o"]
console.log(str.split("e"));// ["h","llo"]
查找
charAt(index) 根据下标查找对应的值
var str = "hello"
console.log(str.charAt(1)); // e
indexOf(value) 根据值查找对应的下标 找不到返回-1
var arr = "hello";
console.log(arr.indexOf('e')); // 1
search(value) 根据值查找对应的下标 找不到返回-1
var str = "你是谁"
var index = str.search("她")
console.log(index); // -1
includes 是否包含某位(多位)字符 返回boolean
var arr = "hello"
console.log(arr.includes("eh")); //false
match(value) 返回匹配的字符串,返回的是数组
var str ="hello"
var arr = str.match("l")
console.log(arr); // ["l", index: 2, input: "hello", groups: undefined]
// 找不到返回 null
**length 字符串的长度
var str = "hello"
console.log(str.length);
var s = "故事的结尾,心上人"
console.log(handleStr(s));
function handleStr(value){
if(value.length>5){
return value.slice(0,5)+"..."
}
return value
}
其他方法
replace()
var str = "hello"
console.log(str.replace("l","*")); // he*lo
trim( ) 去除字符串前后的空格
startsWith( ) 以…开头的字符串