JS怎么把字符串数组转换成整型数组
Posted 靳哲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS怎么把字符串数组转换成整型数组相关的知识,希望对你有一定的参考价值。
比如有一个字符串:
const dataStr="1,2,3,4,5";
现在需要把它分割为int型数组:
let dataIntArr=[1,2,3,4,5];
方法有很多种。这里讲两个有意思的
let dataStr="1,2,3,4,5"; //原始字符串
let dataStrArr=dataStr.split(","); //分割成字符串数组
let dataIntArr=[];//保存转换后的整型字符串
//方法一
dataStrArr.forEach(item => {
dataIntArr.push(+item);
});
console.log(dataIntArr);
//方法二
dataIntArr=dataStrArr.map(item => {
return +item;
});
console.log(dataIntArr);
嗯,就酱~
参考https://www.cnblogs.com/tdalcn/p/7201409.html
以上是关于JS怎么把字符串数组转换成整型数组的主要内容,如果未能解决你的问题,请参考以下文章