Google.DiffMatchPatch.Js 1.0.103

dotnet add package Google.DiffMatchPatch.Js --version 1.0.103
NuGet\Install-Package Google.DiffMatchPatch.Js -Version 1.0.103
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="Google.DiffMatchPatch.Js" Version="1.0.103" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Google.DiffMatchPatch.Js --version 1.0.103
#r "nuget: Google.DiffMatchPatch.Js, 1.0.103"
#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 Google.DiffMatchPatch.Js as a Cake Addin
#addin nuget:?package=Google.DiffMatchPatch.Js&version=1.0.103

// Install Google.DiffMatchPatch.Js as a Cake Tool
#tool nuget:?package=Google.DiffMatchPatch.Js&version=1.0.103

The Diff Match and Patch libraries offer robust algorithms to perform the operations required for synchronizing plain text.

   Diff:
       Compare two blocks of plain text and efficiently return a list of differences.
       Diff Demo
   Match:
       Given a search string, find its best fuzzy match in a block of plain text. Weighted for both accuracy and location.
       Match Demo
   Patch:
       Apply a list of patches onto plain text. Use best-effort to apply patch even when the underlying text doesn't match.
       Patch Demo

Algorithms

This library implements Myer's diff algorithm which is generally considered to be the best general-purpose diff. A layer of pre-diff speedups and post-diff cleanups surround the diff algorithm, improving both performance and output quality.

This library also implements a Bitap matching algorithm at the heart of a flexible matching and patching strategy.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has 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
1.0.103 28,802 2/13/2012
1.0.1 2,444 12/23/2011
1.0.0 2,229 12/23/2011

Please note you need only the diff_match_patch.js in a production environment the test harness and the uncompressed versions are for debugging purposes only.

Updated to revision id 103 of repository.