JsonRepairUtils 0.0.2

dotnet add package JsonRepairUtils --version 0.0.2
NuGet\Install-Package JsonRepairUtils -Version 0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JsonRepairUtils" Version="0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JsonRepairUtils --version 0.0.2
#r "nuget: JsonRepairUtils, 0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install JsonRepairUtils as a Cake Addin
#addin nuget:?package=JsonRepairUtils&version=0.0.2

// Install JsonRepairUtils as a Cake Tool
#tool nuget:?package=JsonRepairUtils&version=0.0.2

Nuget .NET License

JsonRepairUtils

JsonRepairUtils is a near-literal translation of the TypeScript JsonRepair library, see https://github.com/josdejong/jsonrepair

The jsonrepair library is basically an extended JSON parser. It parses the provided JSON document character by character. When it encounters a non-valid JSON structures it wil look to see it it can reconstruct the intended JSON. For example, after encountering an opening bracket {, it expects a key wrapped in double quotes. When it encounters a key without quotes, or wrapped in other quote characters, it will change these to double quotes instead.

The library has many uses, such as:

  • Convert from an a Word document
  • Convert from objects with a JSON-like structure, such as Javascript
  • Convert from a string containing a JSON document
  • Convert from MongoDB output
  • Convert from Newline Delimited JSON logs
  • Convert from JSON dialects
  • Convert from Truncated or corrupted JSON.

The library can fix the following issues:

  • Add missing quotes around keys
  • Add missing escape characters
  • Add missing commas
  • Add missing closing brackets
  • Replace single quotes with double quotes
  • Replace special quote characters like “...” with regular double quotes
  • Replace special white space characters with regular spaces
  • Replace Python constants None, True, and False with null, true, and false
  • Strip trailing commas
  • Strip comments like /* ... */ and // ...
  • Strip JSONP notation like callback({ ... })
  • Strip escape characters from an escaped string like {\"stringified\": \"content\"}
  • Strip MongoDB data types like NumberLong(2) and ISODate("2012-12-19T06:01:17.171Z")
  • Concatenate strings like "long text" + "more text on next line"
  • Turn newline delimited JSON into a valid JSON array, for example:
    { "id": 1, "name": "John" }
    { "id": 2, "name": "Sarah" }
    

Use

Use the original typescript version in a full-fledged application: https://jsoneditoronline.org Read the background article "How to fix JSON and validate it with ease"

Code example

var jsonRepair = JsonRepair();

// Enable throwing exceptions when JSON code can not be repaired or even understood (enabled by default)
jsonRepair.ThrowExceptions = true;

try
{
     // The following is invalid JSON: is consists of JSON contents copied from 
     // a JavaScript code base, where the keys are missing double quotes, 
     // and strings are using single quotes:
     string json = "{name: 'John'}";
     string repaired = jsonRepair.Repair(json);
     Console.WriteLine(repaired);
     // Output: {"name": "John"}
}
catch (JsonRepairError err)
{
     Console.WriteLine(err.Message);
     Console.WriteLine("Position: " + err.Data["Position"]);
}

Alternatives:

Similar libraries:

Acknowledgements

Thanks go out to Jos de Jong, who not only did all the heavy lifting in the original jsonrepair for typescript library, but also patiently helped getting this port to pass all unit tests.

License

Released under the MITS license.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.2 3,596 10/11/2023
0.0.1 2,628 10/11/2023
0.0.1-alpha 64 10/11/2023