字符串类型的数组转怎么换成整数类型的数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串类型的数组转怎么换成整数类型的数组相关的知识,希望对你有一定的参考价值。
比如: a = "123,456,789";
b = a.split(","); //获得的是字符串数组
现在是想得到
c = [123,456,789] //数字类型的数组
b = a.split(",");
c = [];
for (var i = 0; i < b.length; i++)
c.push(Number.parseInt(b[i]));
console.log(c);本回答被提问者采纳 参考技术B public static void main(String[] args) throws Exception
String str="12345";
int arr[] = new int[str.length()];
for (int i = 0;i < str.length(); i ++)
arr[i] = Integer.parseInt(str.substring(i,i+1));
System.out.println(arr[i]);
追问
呃,问下,javascript的该怎么写……提问的时候王忘写了
c语言如何将数组转成字符串
参考技术A 数组是指针,如果是字符数据就已经是字符串了,其它类型可以使用对应的函数转换,如inttostr,floattostr等。以上是关于字符串类型的数组转怎么换成整数类型的数组的主要内容,如果未能解决你的问题,请参考以下文章