Menu

#3 Problem matching whole words with symbols

open
nobody
None
5
2013-02-19
2001-01-09
Anonymous
No

If you set up a query with -mode => 'advanced_text' and -whole => 1, search keywords containing non-word characters don't match.

e.g. if you search for 'C++' with -whole => 1 it won't match 'C++' in the query text.

I think I tracked the problem down to BuildAdvancedString.pm ~line 94 where search keywords are enclosed with \b<word>\b when -whole is switched on.

Since the '+' symbol is recognised as a word boundary by \b, C++ can never be matched. You might be able to solve this by using a \W instead of \b?

Discussion


Log in to post a comment.