安卓js字符串转数组
时间: 2023-12-09 07:36:46 浏览: 76
把格式化字符串分割为数组
3星 · 编辑精心推荐
以下是安卓js字符串转数组的方法:
```javascript
var str = "apple,banana,orange";
var arr = str.split(",");
console.log(arr); // 输出:["apple", "banana", "orange"]
```
以上代码中,我们首先定义了一个字符串str,然后使用split()方法将其转换为数组arr,其中参数","表示以逗号为分隔符进行分割。
阅读全文