.NET library for text algorithms?

前端 未结 6 633
野性不改
野性不改 2020-12-23 18:23

Do you know any .NET library for text algorithms??
Especially I\'m interested in strings match, and full-text-search algorithms like

  • Bitap algorithm
  • <
6条回答
  •  眼角桃花
    2020-12-23 19:11

    If you're doing string matching, Lucene.Net is worth a look.

    However, I know this is not exactly what you're after, and while you can find most of those algorithms in some C# form around, I know of no library incorporating them (I've tended to keep a couple of these in my personal library).

    Out of interest, why would you ever need more than one of these full-match algorithms with a couple of threshold parameters?

提交回复
热议问题