How to search a word in exact match, for example how to search word 'leak', but search results should not include words like 'leaked' or 'leaks' etc.
Help in both Javascript and MySQL would be appreciated.
|
How to search a word in exact match, for example how to search word ' Help in both Javascript and MySQL would be appreciated. |
||||
|
|
|
Basically, you need to look for word boundaries. So don't think of looking for the word To do that in MySQL, the condition would be:
Here, For JavaScript, the query would be:
Here, the sequence
will match |
|||||||||
|
|
The regex would be
Usage in JavaScript
For MySQL (I didn't know it had support for regexes, thanks Rohan Prabhu):
|
||||
|
|
|
This will match words that don't start with leak*
Matches in bold:
|
|||
|
|
I've tested it on the following inputs:
|
|||
|
|