我有一个逗号分隔的字符串,我想把它转换成一个数组,这样我就可以遍历它。
有什么内置的功能吗?
例如,我有这个字符串
var str = "January,February,March,April,May,June,July,August,September,October,November,December";
现在我想用逗号将其拆分,然后将其存储在数组中。
我有一个逗号分隔的字符串,我想把它转换成一个数组,这样我就可以遍历它。
有什么内置的功能吗?
例如,我有这个字符串
var str = "January,February,March,April,May,June,July,August,September,October,November,December";
现在我想用逗号将其拆分,然后将其存储在数组中。
当前回答
如果用户通过添加额外的空格键入错误。你可以用这样的东西。
tags: foo, zar, gar
const stringToArr = (string) => {
return string.trim.split(",");
};
其他回答
请注意:
var a = "";
var x = new Array();
x = a.split(",");
alert(x.length);
将提醒1
正如@oportocala所提到的,空字符串不会产生预期的空数组。
因此,要反击,请执行以下操作:
str
.split(',')
.map(entry => entry.trim())
.filter(entry => entry)
对于预期整数数组,请执行以下操作:
str
.split(',')
.map(entry => parseInt(entry))
.filter(entry => typeof entry ==='number')
我编写了php脚本来将字符串转换为数组,您可以将其运行到浏览器中,因此很容易
<form method="POST">
<div>
<label>String</label> <br>
<input name="string" type="text">
</div>
<div style="margin-top: 1rem;">
<button>konvert</button>
</div>
</form>
<?php
$string = @$_POST['string'];
if ($string) {
$result = json_encode(explode(",",$string));
echo " '$result' <br>";
}
?>
将逗号分隔的字符串传递到此函数,它将返回一个数组,如果找不到逗号分隔字符串,则返回null。
function splitTheString(CommaSepStr) {
var ResultArray = null;
// Check if the string is null or so.
if (CommaSepStr!= null) {
var SplitChars = ',';
// Check if the string has comma of not will go to else
if (CommaSepStr.indexOf(SplitChars) >= 0) {
ResultArray = CommaSepStr.split(SplitChars);
}
else {
// The string has only one value, and we can also check
// the length of the string or time and cross-check too.
ResultArray = [CommaSepStr];
}
}
return ResultArray;
}
var array = string.split(',');
MDN引用,对于极限参数的可能意外行为非常有用。(提示:“a,b,c”.split(“,”,2)指向[“a”,“b”],而不是[“a,”b,c“]。)