如何在js中根据分隔符把字符串分割,并遍历?
let str = "Hello,World,How,Are,You";
let arr = str.split(","); // 使用逗号作为分隔符
// 使用for循环遍历
for(let i = 0; i < arr.length; i++) {
console.log(arr[i]);
}
// 或者使用forEach方法遍历
arr.forEach(function(item) {
console.log(item);
});