Обсуждение: word search

Поиск
Список
Период
Сортировка

word search

От
"Cédric Prévost"
Дата:
Hello,

I would like to proceed to word search in a table.
Use of "[...] attribute~*'string';" in the condition were fine. However,
presence of operators within the string give me an error.
For example :
[...] attribute~*'C++';
To unspecialise the operators could be a way of solving this.
Do you know to do that, if it is possible ?
Thanks for you help,

Sincerely,

CP
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com


Re: word search

От
Wim Ceulemans
Дата:
"Cédric Prévost" wrote:
>
> Hello,
>
> I would like to proceed to word search in a table.
> Use of "[...] attribute~*'string';" in the condition were fine. However,
> presence of operators within the string give me an error.
> For example :
> [...] attribute~*'C++';
> To unspecialise the operators could be a way of solving this.
> Do you know to do that, if it is possible ?
> Thanks for you help,
>

Make sure the result to the backend is:

[...] attribute ~* 'C\\+\\+';

(escape the special characters)

Wim