第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何獲取序列號(hào)的特定鍵數(shù)

如何獲取序列號(hào)的特定鍵數(shù)

動(dòng)漫人物 2023-10-20 17:38:53
有一個(gè)帶有item_description_鍵后綴索引的動(dòng)態(tài)對(duì)象。除了這些鍵之外,還有其他不同的鍵。const input = {  ...  item_description_1: "1"  item_description_2: "2"  item_description_3: "3"  ...}我怎樣才能得到鑰匙的數(shù)量item_description_?上例中的預(yù)期結(jié)果應(yīng)為 3。
查看完整描述

3 回答

?
qq_花開花謝_0

TA貢獻(xiàn)1835條經(jīng)驗(yàn) 獲得超7個(gè)贊

您可以使用Object.keys將對(duì)象的所有鍵放入數(shù)組中;然后過濾以開頭的鍵item_description并計(jì)算結(jié)果數(shù)組的長(zhǎng)度:

const input = {

? another_key: 'x',

? item_description_1: "1",

? item_description_2: "2",

? item_description_3: "3",

? something_else: 4

}


const cnt = Object.keys(input)

? .filter(v => v.startsWith('item_description'))

? .length;


console.log(cnt);


如果您的瀏覽器不支持startsWith,您可以隨時(shí)使用正則表達(dá)式,例如

.filter(v?=>?v.match(/^item_description/))


查看完整回答
反對(duì) 回復(fù) 2023-10-20
?
慕雪6442864

TA貢獻(xiàn)1812條經(jīng)驗(yàn) 獲得超5個(gè)贊

const keyPrefixToCount = 'item_description_';


const count = Object.keys(input).reduce((count, key) => {

  if (key.startsWith(keyPrefixToCount)) {

    count++

  }

  return count;

}, 0)


console.log(count) // 3 for your input

您可能應(yīng)該將前綴刪除到變量中。


編輯:根據(jù) VLAZ 評(píng)論,startsWith會(huì)更準(zhǔn)確


查看完整回答
反對(duì) 回復(fù) 2023-10-20
?
慕蓋茨4494581

TA貢獻(xiàn)1850條經(jīng)驗(yàn) 獲得超11個(gè)贊

我認(rèn)為使用正則表達(dá)式也是一個(gè)不錯(cuò)的選擇,只需多兩行:


const input = {

  item_descrip3: "22",

  item_description_1: "1",

  item_description_2: "2",

  item_description_3: "3",

  test22: "4"

}

const regex = /^item_description_[1-9][0-9]*$/

let result = Object.keys(input).filter(item => regex.test(item))


查看完整回答
反對(duì) 回復(fù) 2023-10-20
  • 3 回答
  • 0 關(guān)注
  • 185 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)