Gabriele Bartolini wrote:
>         The question is: will regexp be able to let me search for every word
> starting with "home"? (and not only "home"). For example, by introducing
> "home*" and expand the star character, will it work?

Right now the 3.2 code has the beginnings of a regex fuzzy match. As it
stands, you'd want
home.* to match every word starting with home. Even then, it doesn't
anchor the matches, so it would also match words with home* somewhere in
it!

There's more work needed on the htsearch code to keep it from stripping
out characters like '.' and '?' so that regex matching works correctly.

>         Maybe, can you estimate the time to get this available on a stable
> version? (That's what my director wanna know).

If you just want prefix regex, you can already get this going. I believe
the default prefix char is '*' so if you turned on prefix in
search_algorithms, it would work.

-- 
-Geoff Hutchison
Williams Students Online
http://wso.williams.edu/
------------------------------------
To unsubscribe from the htdig3-dev mailing list, send a message to
[EMAIL PROTECTED] containing the single word "unsubscribe" in
the SUBJECT of the message.

Reply via email to