c/c++ text searching engine library

C

Costa

I am looking for a c/c++ text search engine library that supports:

- free text searching - not only beginning of words but substrings as
well
- wildcard searching - I want strings such as *test* to be supported
- regular expressions

I know about clucene, but, unless I am mistaken, lucene doesn't
support, for instance, having the * at the beginning of the searched
text, and it doesn't seem to support searching substrings.

Is there anything else out there? I came across a library developed at
some university, the library had a deity name but I can't recall it.

Thanks
 
C

Costa

I just want to add that I used google to search for a library but I
could not find anything 100% satisfactory.
 
C

Costa

I am actually looking for an embeddable c/c++ text search engine such
as clucene not for a regular expression library. If the engine
doesn't support regular expressions that's fine but I want it to
support wildcard searches and substrings.
 
J

James Kanze

Costa said:
I am looking for a c/c++ text search engine library that supports:
- free text searching - not only beginning of words but substrings as
well
- wildcard searching - I want strings such as *test* to be supported
- regular expressions
I know about clucene, but, unless I am mistaken, lucene doesn't
support, for instance, having the * at the beginning of the searched
text, and it doesn't seem to support searching substrings.
Is there anything else out there? I came across a library
developed at some university, the library had a deity name but
I can't recall it.

Boost has a regex component that looks pretty good. For
wildcard matching, of course, the conventions are somewhat
system dependent. In my own code, I map the wildcard pattern to
a regular expression, and use that.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,154
Messages
2,570,870
Members
47,400
Latest member
FloridaFvt

Latest Threads

Top