Unfortunately what you have to do is parse your content and replace these
characters with a token, i.e. replace "?" with " QuestionMark " and then in
your queries when someone is querying on a ? expand this to a query on
QuestionMark.
You will need to replace the ? mark with a token which will not be searched
on and you will need to surround this token with white space for it to work
correctly.
When you return the data to the client make sure you replace the token back
with ?, or have non marked up content somewhere and return this content
instead.

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
> Hi,
> I'm having a noise word problem that I don't seem to see in any of the other
[quoted text clipped - 15 lines]
> Thanks in advance for any help,
> Wayne Antinore
Wayne Antinore - 31 Aug 2005 16:00 GMT
Thanks Hilary,
Yuck!, but thanks anyway at least now I know there isn't a quick fix that
I'm missing :)
Wayne
> Unfortunately what you have to do is parse your content and replace these
> characters with a token, i.e. replace "?" with " QuestionMark " and then
[quoted text clipped - 38 lines]
>> Thanks in advance for any help,
>> Wayne Antinore