Tip of the Week: How to search multiple strings for certain keywords?
Whenever you look for a way to search for multiple strings with specific keywords, you can leverage the following code Sample
(?i) flag for case-insensitive lookup
\b for looking for full words (similar to ‘has’ string operator vs ‘conta… Continue reading Tip of the Week: How to search multiple strings for certain keywords?
