Skip to content

Files

Latest commit

c133340 · Apr 8, 2024

History

History
18 lines (14 loc) · 401 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 401 Bytes

Porter2

Porter2 stemming library

Build Status

Usage

#include <iostream>
#include "Porter2/Porter2.hpp"

int main(int argc, char **argv) {
    porter2::Stemmer stemmer;
    auto thestem = stemmer.stem("eating");
    std::cout << thestem << std::endl; // eat
    return 0;
}