Is there a way to specifically add ".NET" or "C++" so that they WILL be
indexed inside of word or rtf docs?
Or is there a replacement IFilter that will do it?
Kyle!
Hilary Cotter - 23 Sep 2005 16:39 GMT
not really. .Net will be indistinguishable from net or .Net. C++ will be
indistinguishable from C++, C#, C!, or C.

Signature
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
> Is there a way to specifically add ".NET" or "C++" so that they WILL be
> indexed inside of word or rtf docs?
>
> Or is there a replacement IFilter that will do it?
>
> Kyle!
Daniel Crichton - 26 Sep 2005 14:57 GMT
Kyle wrote on Fri, 23 Sep 2005 11:22:13 -0400:
> Is there a way to specifically add ".NET" or "C++" so that they WILL be
> indexed inside of word or rtf docs?
I created a seperate column in my database to store a tokenised version of
the column I wanted to index, with ".net" replaced with "dotnet", and "C++"
replaced with "cplusplus". When someone types in words to search like
"visual basic .net" I then pass "visual basic dotnet" into my search
function. It requires more storage, but at least it works, and disk space is
cheap :)
Dan