Thread: word search

word search

From
"Cédric Prévost"
Date:
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

From
Wim Ceulemans
Date:
"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