lotus notes - FTSearch that looks for '-' -


does know if there possibility search '-' using ftsearch?

set col = db.ftsearch({ [services] = "-"}, 0) 

dat requests not work , instead says:

notes error: full text error; see log more information ( [services] = "-")

short answer no.

the full text search treats symbol characters white space. exception if search term wrapped in quotes.

the ft search engine uses 3-gram searching. means less 3 characters not return results expect. white spaces treated in search, in context of found text.

for example: "ce " find "space " not "space." or "space" or "spaced".

if looking field contains "-", better solution create view column containing field value, and/or filter field being value.


Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -