C ++ flags library
I have code written in C ++ that searches between a large document base (using CLucene). I want to make it agnostic from singular and plural during search and so I need to reflect words. While working with python, I have used inflect a lot ; is there a C ++ library to do the same?
+3
source to share
1 answer
I think the search keyword you are looking for is " stemming ". There's also a C ++ library (BSD license) linked from the Wikipedia page (I can't comment on the library though, since I haven't used it).
+2
source to share