Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

first at all, I want to apologize for my english. And now, the main problem I have. I need to get the score of the similarity between texts, when one is inside the second.

For example:
Text1: aaa bbb ccc ddd eee
Text2: bbb ccc

I need somethig what say me, that text2 is for 100% inside the Text1. Is there some way to do this??? Thanks Trepik.

share|improve this question

3 Answers

Depending on what you want you may try

  • length of longest common subsequence of both texts divided by length of text2
  • or length of longest contiguous subsequence of both texts also divided be length of text2

Both will give you 1 if the text is completely inside text1 and 0 if they do not share a common character.

share|improve this answer
Thanks for you answer. Has Lucene something what I can use to do that? Imagine, that you have e.g. 2 sets of 2GB short texts and you need to get, what I described above. – Trepik Mar 7 '11 at 20:38

You don't Lucene to obtain similarity between texts.There are several measures available depending on the text length, type of strings etc. and you will need to experiment which gives you the best results.

A pretty good and comprehensive collection of algorithms is available at SimMetrics is an F/OSS library that offers an extensive collection of similarity algorithms and their corresponding cost functions.

share|improve this answer

Please see the book Mining of Massive Datasets and Dekang Lin's definition of similarity (PDF). Both do not require Lucene.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.