в основном два вопроса.
1. Существует ли библиотека c ++, которая бы выполняла полнотекстовый логический поиск, как в mysql.Например,
Допустим, у меня есть:
<code>string text = "this is my phrase keywords test with boolean query.";
string booleanQuery = "\"my phrase\" boolean -test -\"keywords test\" OR ";
booleanQuery += "\"boolean search\" -mysql -sql -java -php"b<br>
//where quotes ("") contain phrases, (-) is NOT keyword and OR is logical OR.
Если ответ сначала - нет, то;
2. Можно ли искать фразу в тексте.например,
<code>
string text =//same as previous
string keyword = "\"my phrase\"";<br>
//here what's the best way to search for my phrase in the text?