Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8858201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:46:27+00:00 2026-06-14T14:46:27+00:00

I am coding a JSON wrapper for Boost property tree. Currently the focus is

  • 0

I am coding a JSON wrapper for Boost property tree.
Currently the focus is on writing the resulting JSON into a string or a file.

Using boost::property_tree::json_parser::write_json(ss, *pt) the resulting property tree is written in a string.

But this method do not understand what is a true, false, null or a number.
Everything is converted to a string.

Reading the Boost documentation this is a limitation of the library.
Is there any way to modify this behavior?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T14:46:28+00:00Added an answer on June 14, 2026 at 2:46 pm

    Link In this link is a fix for the problem.

    It involves changing boost code, because of that I tried another alternative.
    My solution involves regular expressions:

    std::string JSONObject::toString() const
    {
        boost::regex exp("\"(null|true|false|[0-9]+(\\.[0-9]+)?)\"");
        std::stringstream ss;
        boost::property_tree::json_parser::write_json(ss, *pt);
        std::string rv = boost::regex_replace(ss.str(), exp, "$1");
    
        return rv;
    }
    

    Basically I search for the keywords: true, false, null and any type of number.
    The matches are replaced with the same without quotes.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In the example for coding with Json using Databinder Dispatch Nathan uses an Object
I was previously hard coding a path to load a json file like so:
I'm trying to deserialise JSON data into my iPhone application using RestKit's RKObjectManager. My
I have a service that attempting to serialize a list into JSON (using JSON.NET)
I'm building an app in Sencha Touch 2 using a PhoneGap wrapper. I'm coding
I use this code to process a date string coming in from a json
I dread coding this but has anyone coded this before or are you using
I'm in early (pre-coding) stages of developing a mobile web application using jQuery Mobile
I tried to populate google chart datatable in server side using PHP.I got JSON
I'm a beginner in C# and JSON, I've only been coding in Java (Basic

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.