一、增
- concat
- padEnd
- padStart
concat()
concat()
办法用于将两个或多个字符串连接在一同,并回来一个新的字符串。
const str1 = 'Hello';
const str2 = 'World';
const result = str1.concat(' ', str2);
console.log(result); // Output: "Hello World"
padEnd() 和 padStart()
padEnd()
和 padStart()
办法别离用于在字符串的末尾或最初填充指定的字符,直到字符串到达指定的长度。
const str = 'Hello';
console.log(str.padEnd(10, '.')); // Output: "Hello....."
console.log(str.padStart(10, '.')); // Output: ".....Hello"
二、删
- slice
- substring
- substr
slice()
slice()
办法从原始字符串中提取出指定位置范围的子字符串,并回来一个新的字符串,不会修改原始字符串。
const str = 'Hello World';
console.log(str.slice(6)); // Output: "World"
console.log(str.slice(0, 5)); // Output: "Hello"
substring()
substring()
办法与 slice()
办法相似,但不支撑负索引。它回来位于两个指定索引之间的子字符串。
const str = 'Hello World';
console.log(str.substring(6)); // Output: "World"
console.log(str.substring(0, 5)); // Output: "Hello"
substr()
substr()
办法从指定位置开始提取指定长度的子字符串,并回来一个新的字符串。
const str = 'Hello World';
console.log(str.substr(6)); // Output: "World"
console.log(str.substr(0, 5)); // Output: "Hello"
三、改
- replace
- repeat
- trim
- trimLeft
- trimRight
- toLowerCase
- toUpperCase
replace()
replace()
办法用新字符串替换原始字符串中的匹配项。
const str = 'Hello World';
console.log(str.replace('World', 'Universe')); // Output: "Hello Universe"
repeat()
repeat()
办法将字符串重复指定次数,并回来一个新的字符串。
const str = 'Hello';
console.log(str.repeat(3)); // Output: "HelloHelloHello"
trim()
trim()
办法去除字符串两端的空白字符,并回来一个新的字符串。
const str = ' Hello World ';
console.log(str.trim()); // Output: "Hello World"
toLowerCase() 和 toUpperCase()
toLowerCase()
和 toUpperCase()
办法别离将字符串转化为小写和大写方式。
const str = 'Hello World';
console.log(str.toLowerCase()); // Output: "hello world"
console.log(str.toUpperCase()); // Output: "HELLO WORLD"
四、查
- includes
- indexOf
- lastIndexOf
- chatAt()
- startsWith
- endsWith
includes()
includes()
办法查看字符串是否包含指定的子字符串,并回来 true 或 false。
const str = 'Hello World';
console.log(str.includes('World')); // Output: true
console.log(str.includes('Universe')); // Output: false
indexOf() 和 lastIndexOf()
indexOf()
和 lastIndexOf()
办法别离回来字符串中指定子字符串的第一个匹配项和最终一个匹配项的索引。
const str = 'Hello World';
console.log(str.indexOf('o')); // Output: 4
console.log(str.lastIndexOf('o')); // Output: 7
charAt()
charAt()
办法回来指定位置的字符。
const str = 'Hello World';
console.log(str.charAt(6)); // Output: "W"
startsWith() 和 endsWith()
startsWith()
和 endsWith()
办法别离查看字符串是否以指定的子字符串最初或结束,并回来 true 或 false。
const str = 'Hello World';
console.log(str.startsWith('Hello')); // Output: true
console.log(str.endsWith('World')); // Output: true
五、转化办法
- charCodeAt
- split
charCodeAt()
charCodeAt()
办法回来指定位置字符的 Unicode 编码。
const str = 'Hello';
console.log(str.charCodeAt(0)); // Output: 72
split()
split()
办法将字符串切割为子字符串数组,使用指定的分隔符进行切割。
const str = 'apple,banana,grape';
console.log(str.split(',')); // Output: ["apple", "banana", "grape"]
结语
假如这篇文章对你有协助的话,欢迎点个赞保藏一下,你的点赞是对作者最好的鼓励,最终假如您也和我一样预备春招,,欢迎加我微信lx3122178991
,一同交流面经,一同屡败屡战。