gpt4 book ai didi

javascript - 从javascript中的数组中删除重复的数组值

转载 作者:行者123 更新时间:2023-11-28 07:29:49 24 4
gpt4 key购买 nike

我想从我的数组中删除重复的条目,我的数组是

        ArrayTotal All Banks,Total All Banks,Total Domestic Banks,Total Domestic Banks,B2B Bank,B2B Bank,Bank of Montreal,Bank of Montreal,The Bank of Nova Scotia,The Bank of Nova Scotia,

我们想删除重复的条目,我正在 php unique_array 中尝试,我也在 javascript 中尝试过

      var uniqueNames = [];
$.each(names, function(i, el){
if($.inArray(el, uniqueNames) === -1) uniqueNames.push(el);
});

console.log(uniqueNames) its gave error Unexpected token A

最佳答案

尝试一下 PHP,

$dup=array();
foreach($bname as $k=>$v) {

if( ($kt=array_search($v,$bname))!==false and $k!=$kt )
{ unset($unique[$kt]); $dup[]=$v; }

}

关于javascript - 从javascript中的数组中删除重复的数组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29249106/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com