text diff
-
hi I want to implement data versioning in a application... I need a Delta(diff) algorithm component. I nedd a text diff class library. where can I find it? thanks.
Mohammad Khansari
-
hi I want to implement data versioning in a application... I need a Delta(diff) algorithm component. I nedd a text diff class library. where can I find it? thanks.
Mohammad Khansari
Google ?
Christian Graus Driven to the arms of OSX by Vista.
-
hi I want to implement data versioning in a application... I need a Delta(diff) algorithm component. I nedd a text diff class library. where can I find it? thanks.
Mohammad Khansari
For word-by-word diff I like to use the SequenceMatcher class in CPython. It has a method get_opcodes which is helpful. I was able to call get_opcodes in C# using IronPython (uses 5 .py files). I store the PythonEngine in session since the ctor is expensive.