skip to Main Content

Is there a particular way to join each individual block of string with | that way it’s

9000234|Test NPC|0|0|0|0|0|0|0|0| excluding isEnabled. I don’t want the other block merging with each other either. I’m not exactly sure how I would go about this.

    "100_npc": {
        "uniqueId": 9000234,
        "username": "Test NPC",
        "itemsObj": {"colour": 0, "head": 0, "face": 0, "body": 0, "neck": 0, "hand": 0, "feet": 0, "flag": 0, "photo": 0},
        "isEnabled": true
    },
    "101_npc": {
        "uniqueId": 9000251,
        "username": "Pelican",
        "itemsObj": {"colour": 0, "head": 0, "face": 0, "body": 0, "neck": 0, "hand": 0, "feet": 0, "flag": 0, "photo": 0},
        "isEnabled": true
    }
}

2

Answers


  1. This seems to output what you are asking for: (playground)

        let data = {
          '100_npc': {
            uniqueId: 9000234,
            username: 'Test NPC',
            itemsObj: {
              colour: 0,
              head: 0,
              face: 0,
              body: 0,
              neck: 0,
              hand: 0,
              feet: 0,
              flag: 0,
              photo: 0,
            },
            isEnabled: true,
          },
          '101_npc': {
            uniqueId: 9000251,
            username: 'Pelican',
            itemsObj: {
              colour: 0,
              head: 0,
              face: 0,
              body: 0,
              neck: 0,
              hand: 0,
              feet: 0,
              flag: 0,
              photo: 0,
            },
            isEnabled: true,
          },
        };
        
        let result = [];
        
        for (let key in data) {
          if (data.hasOwnProperty(key)) {
            let item = data[key];
            let arr = [item.uniqueId, item.username];
            for (let objKey in item.itemsObj) {
              arr.push(item.itemsObj[objKey]);
            }
            result.push(arr.join('|'));
          }
        }
        
        console.log(result.join('n'));
    Login or Signup to reply.
  2. I you want to search only for a specific property name like "npc_100"

    const data =  {  
      "100_npc": {"uniqueId": 9000234,"username": "Test NPC","itemsObj": {"colour": 0, "head": 0, "face": 0, "body": 0, "neck": 0, "hand": 0, "feet": 0, "flag": 0, "photo": 0},"isEnabled": true},
      "101_npc": {"uniqueId": 9000251,"username": "Pelican","itemsObj": {"colour": 0, "head": 0, "face": 0, "body": 0, "neck": 0, "hand": 0, "feet": 0, "flag": 0, "photo": 0},"isEnabled": true}
    };
    
    
    const prop = "100_npc";
    
    const result = Object.entries(data[prop]).reduce((a, [k, v]) => 
      (k !== "isEnabled" && a.push(k==="itemsObj" ? Object.values(v) : v), a)
    , []).flat().join("|");
    
    console.log(result)

    For a file output:

    const data =  {  
      "100_npc": {"uniqueId": 9000234,"username": "Test NPC","itemsObj": {"colour": 0, "head": 0, "face": 0, "body": 0, "neck": 0, "hand": 0, "feet": 0, "flag": 0, "photo": 0},"isEnabled": true},
      "101_npc": {"uniqueId": 9000251,"username": "Pelican","itemsObj": {"colour": 0, "head": 0, "face": 0, "body": 0, "neck": 0, "hand": 0, "feet": 0, "flag": 0, "photo": 0},"isEnabled": true}
    };
    
    const result = Object.values(data).map(entry => Object.entries(entry).reduce((a, [k, v]) => 
      (k !== "isEnabled" && a.push(k==="itemsObj" ? Object.values(v) : v), a)
    , []).flat().join("|")).join("n");
    
    console.log(result)
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search