Skip to content

oleksii-mdr/nTextNetwork

Repository files navigation

nTextNetwork

The aim of this project is to provide an open source text analysis library for .NET platform.

The main interface to use is ITextStatistic.

Sample code:

using(Stream stream = File.OpenRead("C:\somefile.txt"))
{
    ITextStatisticBuilder builder = new TextStatisticsBuilder();
    ITextStatistic stats = builder.Build(stream);
}

See it working

Application is deployed to nTextNetwork.

Developer corner