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
<PackageReference Include="Google.DiffMatchPatch.Js" Version="1.0.103" />
paket add Google.DiffMatchPatch.Js --version 1.0.103
#r "nuget: Google.DiffMatchPatch.Js, 1.0.103"
// 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.
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.
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.