SimMetrics.Net SimMetrics是一个相似性度量库,例如,从编辑距离(Levenstein等)到其他度量(Chapman等)。 地位 AppVeyor Travis codecov.io coveralls.io NuGet 支持的框架是: .NET 2.0 .NET 3.5 .NET 4.0 .NET 4.5及更高版本 .NET Standard 1.0到.NETStandard 1.6(包括便携式,Windows Phone和uap) .NET标准2.0 基于以及原始项目中的所有87个单元测试。
2023-03-03 17:20:22 6.73MB algorithms string string-metrics distance-metric
1
声音编码 语音算法。 Soundex是较早的语音算法之一,专门为姓氏设计,启发了其他诸如 。 根据您的目标,另外使用一个茎杆(例如 )。 安装 : npm install soundex-code API var soundex = require ( 'soundex-code' ) soundex ( 'phonetics' ) // => 'P532' soundex ( 'Ashcraft' ) // => 'A261' soundex ( 'Lissajous' ) // => 'L222' soundex ( 'Smith' ) === soundex ( 'Schmit' ) // => true soundex ( 'Ashcraftersson' , 6 ) // => 'A26136' soundex ( 'A' , 6 ) // => 'A000' 命令行界面 Usage: soundex-code [options] Soundex phonetic algorithm. Options: -h, --help
2021-02-02 16:37:39 7KB algorithm natural-language soundex phonetic
1