Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

String search library in Java without the use of regex

I'm looking for library that is much simpler than (Lucene in Memory search) and serves mainly for searching within Java Strings.

It should have wildcard - AND - OR support, case sensitivity option , hit count, index of each search hit within the string; Pretty much your average search options that are used the most. Nothing special; And it should have low memory usage and be fast.

Every once in while I'm doing something simple with searching and now it is starting to bother me. So I'm contemplating to write something on my own. But before I start doing that I'd like to get scoop on what is out there.

like image 560
MatBanik Avatar asked Nov 14 '22 23:11

MatBanik


1 Answers

I am not entirely sure if this will help you, but I have just recently looking into this myself. This seems to be a fairly good list of tools.

like image 114
John Kane Avatar answered Dec 15 '22 20:12

John Kane