Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
106 views

compare text and get differences

Well i want to compare 2 strings (version one and version two) and get the differences in a format that i can convert to html on my own, like you can view how a post was edited here on stack*overflow* ...
2
votes
1answer
115 views

Is there jQuery plugin to compare differences in two different text strings?

I need compare differences in two different versions of same text like in Wikipedia or Stackoverflow, and I would like to know if there is jQuery plugin for this kind of purpose.
2
votes
2answers
726 views

Eclipse text comparison order

I'm using Eclipse 3.4 (on Mac) and I've got an annoyance with the text comparison having the files I'm comparing in a specific order which is not what I want. When I compare two files it always seems ...
1
vote
1answer
52 views

Text revision comparison StackOverflow-style for ASP.NET MVC?

I'd like to show revisions of text, and I love how StackOverflow does it (e.g. see below). Is there an open source .NET code that can receive two texts and output such a result? If you know of a paid ...
1
vote
1answer
242 views

How to compare a set of strings to find common substrings

I'm trying to create a script that looks through a list of strings files and reports on the sub-strings that are most common between them. For example: Hello, I am string one. I like apples and ...
1
vote
5answers
615 views

Compare lots of texts (clustering) with a matrix

I have the following PHP function to calculate the relation between to texts: function check($terms_in_article1, $terms_in_article2) { $length1 = count($terms_in_article1); // number of words ...
0
votes
5answers
257 views

How to test a string for text

I would like to test a string to see if anywhere it contains the text "hello". I would like the test to not take into account capitalization. How can I test this string?
0
votes
1answer
212 views

Compare character of text files in php

Suppose I have two text files. The first one, called reference.txt has the following content: dog goat cat The second one, called compare.txt has the following content: cow goat cockroach I ...
0
votes
1answer
128 views

Finding similar lines in text - Phasing - Dynamic comparison

I have a small bioinformatics problem that I think should be easy to solve. Related to "genotype phasing". But I'm not sure how to tackle it. In the extract below, the first column are identifiers, ...