Net Core教程

.net core 字符串相似度比较算法:Jaro–Winkler similarity

本文主要是介绍.net core 字符串相似度比较算法:Jaro–Winkler similarity,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、新建项目:StringSimilarityDemo

  <ItemGroup>
    <PackageReference Include="F23.StringSimilarity" Version="4.1.0" />
  </ItemGroup>

二、Program.cs

using F23.StringSimilarity;
using System;

namespace StringSimilarityDemo
{
    class Program
    {
        static void Main(string[] args)
        {
            //Jaro-Winkler
            var jw = new JaroWinkler();

            // substitution of s and t
            Console.WriteLine(jw.Similarity("My string", "My tsring"));

            // substitution of s and n
            Console.WriteLine(jw.Similarity("My string", "My ntrisg"));

        }
    }
}

运行效果:

 

这篇关于.net core 字符串相似度比较算法:Jaro–Winkler similarity的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!