Skip to content

A C++ library that conduct basic text analysis for preprocessing a given string.

License

Notifications You must be signed in to change notification settings

paddy74/textalyzer

Repository files navigation

License: MIT

Textalyzer

This is a C++ library for conducting several basic text analysis methods - primarily for preprocessing a given std::string.

Getting started

Please read FEATURES.md for details on how to utilize this library.

Adding to your project

The recommended/intended way to add this library to you project is by including the following to your CMakeLists.txt:

cmake_minimum_required(VERSION 3.13)
project(myProject)

include_directories("path/to/textalyzer/include")
add_subdirectory("path/to/textalyzer")

add_executable(myProject myProject_SOURCES)
# or `add_library(myProject myProject_SOURCES)`

target_link_libraries(myProject textalyzer)

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

About

A C++ library that conduct basic text analysis for preprocessing a given string.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published