Giter VIP home page Giter VIP logo

Comments (5)

artwyman avatar artwyman commented on July 20, 2024

Do you have a question? It's not really easy for me to debug your code for you, but some things which jump out at me at a glance are that y["message"] is an object not an array, and that m is an array not an object.

Note that json11 is explicitly designed to give you default answers if you ask for an item which doesn't exist, or has the wrong type, so if you call array_items() on a non-array, you'll just get no items. You may want to check things more explicitly during parsing, using functions like is_array().

from json11.

Shravan40 avatar Shravan40 commented on July 20, 2024

@artwyman : Yes, I do have a question. I am really sorry for not being clear at first.

I want to parse 2-D array

{
    "2dArray" : [ [1,2,3,4,5], [2,3,4], [6,7,89] ]
}

And I wants to parse this input. 

from json11.

artwyman avatar artwyman commented on July 20, 2024

Again, that's not a question. What are you hoping to parse it into? What have you tried? What is unclear to you?
I'm happy to help, but I'm not going to write your code for you.

from json11.

Shravan40 avatar Shravan40 commented on July 20, 2024

I have found the solution :)

        string inputError;
        auto y = Json::parse(r.text, inputError);
        for (auto &m : y["2dArray"].array_items()) {
                for(auto &n : m.array_items()) {
                    // Now element of array can be accessed with the help of iterator n
                }
            }

from json11.

artwyman avatar artwyman commented on July 20, 2024

Glad you were able to make it work.

from json11.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.