在我的项目中,我陷入了这个任务。我有这样的字符串数组:
var tempArray = [];
tempArray[0]="key1 : value1";
tempArray[1]="key1 : value2";
tempArray[3]="key2 : value1";
tempArray[4]="key2 : value2";
tempArray[5]="key2 : value3";
现在我想要的结果是这样的:
"key1":"value1","value2"
"key2":"value1","value2","value3"
您可以使用JSON或数组我只想在此格式中获得结果。
答案 0 :(得分:3)
您可以使用Array.prototype.reduce()转换您喜欢的数组:
private IEnumerable<T> CalcProp()
{
// Business logic using Name and Values
return resultOfLogic;
}
public IEnumerable<T> MyProp
{
get { return _MyProp.Value; }
}
private readonly Lazy<IEnumerable<T>> _MyProp;
public MyClass(string Name, IEnumerable<T> Values)
{
this._Name = Name;
this._Values = Values;
this._MyProp = new Lazy<IEnumerable<T>>(CalcProp);
}
答案 1 :(得分:2)
您可以在此使用reduce
效果良好。
var out = tempArray.reduce(function (p, c) {
var arr = c.split(' : '), key = arr[0], value = arr[1];
p[key] = p[key] || [];
p[key].push(value);
return p;
}, {});
请注意,这会为您提供一个对象,其值为数组。您可以像这样访问它们:
out.key1[0] // value1
答案 2 :(得分:1)
试试这个
(function() {
var tempArray = [];
tempArray[0] = "key1 : value1";
tempArray[1] = "key1 : value2";
tempArray[3] = "key2 : value1";
tempArray[4] = "key2 : value2";
tempArray[5] = "key2 : value3";
function parse() {
var _tempArr = {}
tempArray.forEach(function(item) {
var k = item.replace(/\s+/, "").split(":");
if (_tempArr[k[0]] !== undefined) {
_tempArr[k[0]].push(k[1]);
} else {
_tempArr[k[0]] = [];
_tempArr[k[0]].push(k[1]);
}
});
console.log(_tempArr);
}
parse();
})()
答案 3 :(得分:1)
试试这个功能......我不知道是否有特定的功能,但我做了一个能做你想做的功能......
function getMultArray(temp) {
var newArray = {};
var key;
var oldValue = null;
var tempA = [];
var i = 0;
var j = 0;
$.each(temp, function(k, value) {
var newValue = value.split(" : ");
j++;
if (oldValue === newValue[0]) {
tempA.push(newValue[1]);
if (temp.length == j) {
newArray[oldValue] = tempA;
tempA = [];
}
} else {
if (i === 0) {
i = 1;
oldValue = newValue[0];
tempA.push(newValue[1]);
if (temp.length == 1) {
newArray[oldValue] = tempA;
tempA = [];
}
} else {
newArray[oldValue] = tempA;
tempA = [];
tempA.push(newValue[1]);
oldValue = newValue[0];
if (temp.length == j) {
newArray[oldValue] = tempA;
tempA = [];
}
}
}
});
return newArray;
}
var tempArray = [];
tempArray[0] = "key1 : value1";
tempArray[1] = "key1 : value2";
tempArray[2] = "key2 : value1";
tempArray[3] = "key2 : value2";
tempArray[4] = "key2 : value3";
var newArray = getMultArray(tempArray);
$.each(newArray, function(key, value) {
$.each(value, function(i, value) {
$("#result").html($("#result").html()+"<br/>"+key + "-" + value);
});
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id='result'></div>
&#13;
答案 4 :(得分:1)
我建议将formato数据更改为更简洁的样式,仅使用key
'key1'
和value
'value1'
,而不是像"key1 : value1"
这样的组合字符串{1}}。
结果是一个对象,其中键作为属性,值作为数组中的元素。
var object = {};
function addValueWithKey(key, value) {
object[key] = object[key] || [];
object[key].push(value);
}
addValueWithKey('key1', 'value1');
addValueWithKey('key1', 'value2');
addValueWithKey('key2', 'value1');
addValueWithKey('key2', 'value2');
addValueWithKey('key2', 'value3');
document.write('<pre>' + JSON.stringify(object, 0, 4) + '</pre>');