Quick search for whole word

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
raymondfung
User
Posts: 14

Quick search for whole word

Post by raymondfung »

Is there any way I can search for the result for whole word.

case like I am searching for "ARK" and I am looking for "ARK" but not including "Mark".

I know advance search with "=" can do this. May I know if quick search can do this too? like any regex option can be used? like "\b" ?


MichaelG
User
Posts: 1095

Post by MichaelG »

SQL Server may support syntax like:

[CompanyName] LIKE '%[a-zA-Z]keyword[a-zA-Z]%'


Post Reply