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

Is there a package that contains Levenshtein distance counting function which is implemented as a C or Fortran code? I have many strings to compare and stringMatch from MiscPsycho is too slow for this.

share|improve this question

2 Answers

up vote 5 down vote accepted

levenshteinDist calls compiled C code. Give it a try.

share|improve this answer
Thanks, that's what I was looking for. On the other hand it's quite impressive that I need neural networks for such a task ;-) – mbq Jul 5 '10 at 21:09

You could try stringDist from Biostrings as well

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.