String.Search 1.1.2

dotnet add package String.Search --version 1.1.2
NuGet\Install-Package String.Search -Version 1.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="String.Search" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add String.Search --version 1.1.2
#r "nuget: String.Search, 1.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install String.Search as a Cake Addin
#addin nuget:?package=String.Search&version=1.1.2

// Install String.Search as a Cake Tool
#tool nuget:?package=String.Search&version=1.1.2

String.Search

NuGet version (String.Search)

What is String.Search?

String.Search is a simple library to implement a full text search with given patterns.

How do I get started?

Install the package from Nuget

Install-Package String.Search

Examples

For given text, such as

    private const string EnglishText = @"It’s a technique for building a computer program that learns from data. 
It is based very loosely on how we think the human brain works. 
First, a collection of software “neurons” are created and connected together, 
allowing them to send messages to each other. Next, the network is asked to solve a problem, 
which it attempts to do over and over, each time strengthening the connections that lead to success and diminishing those that lead to failure. 
For a more detailed introduction to neural networks, Michael Nielsen’s Neural Networks and Deep Learning is a good place to start. For a more technical overview, 
try Deep Learning by Ian Goodfellow, Yoshua Bengio, and Aaron Courville.";
  • Search
    var results = EnglishText.Search(new List<string>
    {
        "Deep Learning",       // There are two matches in text, case insensitive
        "brain",               // One match in text
        "neural networks"      // Two matches in text
    }).ToArray();

    Assert.AreEqual(5, results.Length);
    Assert.AreEqual((497, "neural networks"), results[1]); // 497 is the position
    Assert.AreEqual(1, results.Where(x => x.value == "Neural Networks").Count());
    Assert.AreEqual(2, results.Where(x => x.value == "Deep Learning").Count());
  • Replace
    var result = EnglishText.Replace(new List<string>
    {
        "Deep Learning",
        "brain",
        "neural networks"
    });

    Assert.AreEqual(@"It’s a technique for building a computer program that learns from data. 
It is based very loosely on how we think the human ***** works. 
First, a collection of software “neurons” are created and connected together, 
allowing them to send messages to each other. Next, the network is asked to solve a problem, 
which it attempts to do over and over, each time strengthening the connections that lead to success and diminishing those that lead to failure. 
For a more detailed introduction to ***************, Michael Nielsen’s *************** and ************* is a good place to start. For a more technical overview, 
try ************* by Ian Goodfellow, Yoshua Bengio, and Aaron Courville.", 
    result);
  • DistanceTo
    var result = "toy".DistanceTo("boy"); // result == 1
    result = "Template".DistanceTo("tepmlate"); // result == 2
    result = "人工智能".DistanceTo("人工智障"); // result == 1

It also works for Unicode strings.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.2 5,085 6/5/2020
1.1.1 472 5/21/2020
1.1.0 455 5/20/2020
1.0.0 546 4/15/2020

Added string extensions with given Aho-Corasick pattern matcher