📅  最后修改于: 2023-12-03 15:12:12.908000             🧑  作者: Mango
在谷歌脚本中,提供了字符串拆分的方法,可以将一个字符串按照指定的分隔符进行拆分成多个子字符串。这个方法是 split(separator, limit)
,其中 separator
是分隔符,可以是字符串或正则表达式, limit
是可选参数,用于限制返回的子字符串数量。
string.split(separator, limit)
返回一个包含拆分后的子字符串的数组。
const str = 'hello,world';
const res = str.split(',');
console.log(res);
// ['hello', 'world']
const str = 'hello,world,John,Doe';
const res = str.split(',', 2);
console.log(res);
// ['hello', 'world']
const str = 'hello world';
const res = str.split('');
console.log(res);
// ['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
''
,则返回的数组中将包含一个元素,即原字符串。以上就是谷歌脚本中字符串拆分的方法介绍,希望对你有所帮助!