views:

129

answers:

2

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.

+3  A: 

levenshteinDist calls compiled C code. Give it a try.

gd047
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
+1  A: 

You could try stringDist from Biostrings as well

Aaron Statham