GithubHelp home page GithubHelp logo

isabella232 / google-diff-match-patch-objective-c Goto Github PK

View Code? Open in Web Editor NEW

This project forked from quizlet/google-diff-match-patch-objective-c

0.0 0.0 0.0 161 KB

Objective C port of the Diff, Match and Patch libraries

Home Page: http://code.google.com/p/google-diff-match-patch/

License: Apache License 2.0

Objective-C 88.91% C 10.32% Ruby 0.30% C++ 0.46%

google-diff-match-patch-objective-c's Introduction

Diff, Match and Patch Library, Objective C port

http://code.google.com/p/google-diff-match-patch/

Diff, Match and Patch library for plain text

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

Currently available in Java, JavaScript, Dart, C++, C#, Objective C, Lua and Python. Regardless of language, each library features the same API and the same functionality. All versions also have comprehensive test harnesses.

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.

Usage

Add “DiffMatchPatch.xcodeproj” to your project (preferably into “Frameworks” to keep things tidy).

In your target’s “Build Phases”:

  • Add Build Phase (+-button pull-down menu) > Copy Files
  • Destination: Frameworks
  • Change name to “Copy Frameworks” to keep things clean

Add “DiffMatchPatch.framework” to the following build phases (via the +-buttons):

  • “Target Dependencies”
  • “Link Binary With Libraries”
  • “Copy Frameworks” (created above)

And finally add the header to your code:

#import <DiffMatchPatch/DiffMatchPatch.h>

Notes

If you want to run the speed test, you first need to change the working directory of the executable “speedtest” to “Project directory”. This cannot be done beforehand, because this setting is stored in the current user’s project settings.

google-diff-match-patch-objective-c's People

Contributors

corinnekrych avatar janx2 avatar

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.