string differences libraries

  • Thread starter Thread starter Jeroen
  • Start date Start date
J

Jeroen

We have update operations on strings, where we know the "New" and "Old"
version of the string. A html report will be generated about many of
these changes. I would like to mark these changes with colors.

Are there any .NET classes already available for this kind of string
comparison? We're working with studio 2003.
 
Sorry, perhaps I didn't explain well enough. I mean I want to create
some code that can highlight string differences, something like:

string text1 = "this looks like the one below";
string text2 = "This looks a lot like the one above";
System.YYY.StringDifference[] differences = System.YYY.Compare(text1,
text2);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top