- 使用split()方法
这可能是最常见的字符串分割方法,它使用指定的分隔符将字符串拆分为子字符串,并返回一个数组。例如:
const str = 'Hello World';
const arr = str.split(' ');
console.log(arr); // ['Hello', 'World']
- 使用substring()方法
此方法从字符串中提取子字符串并返回。可以使用它来分割字符串,但它需要手动指定子字符串的开始和结束索引。例如:
const str = 'Hello World';
const str1 = str.substring(0, 5);
const str2 = str.substring(6);
console.log(str1); // 'Hello'
console.log(str2); // 'World'
- 使用slice()方法
此方法也从字符串中提取子字符串并返回。它需要指定开始和结束索引,但可以使用负索引来从字符串的末尾计算索引。例如:
const str = 'Hello World';
const str1 = str.slice(0, 5);
const str2 = str.slice(6);
console.log(str1); // 'Hello'
console.log(str2); // 'World'
- 使用RegExp正则表达式
使用正则表达式可以更灵活地分割字符串,可以基于任何模式对字符串进行拆分。例如:
const str = '1,2,3,4,5';
const arr = str.split(/[ ,]/);
console.log(arr); // ['1', '2', '3', '4', '5']
这将使用逗号和空格作为分隔符将字符串拆分为子字符串。