Greetings to all,
I am new here. I just discovered this tool in my search. Happy I did.
I have a bit of challenge at the moment. What is the correct regex to use in the search to obtain the desired results describe below.
For example, I am searching for the word "dog" in the file name. And it returns a result "Pseudogout" which is a file name.
Notice the word "dog" is inside the word "Pseudogout".
How do I use the regex to eliminate such results?
I would appreciate some help here.
Regards.
Donovan
Re: Regex Question (Help)
Re: Regex Question (Help)
Hi Guys,
I think I found a solution. This seems to do the trick.
^dog|dog$|dog
I got help from this free resource (you can see the thread here) http://stackoverflow.com/questions/7106 ... stion-help.
Hope this solution will come in handy.
Regards.
I think I found a solution. This seems to do the trick.
^dog|dog$|dog
I got help from this free resource (you can see the thread here) http://stackoverflow.com/questions/7106 ... stion-help.
Hope this solution will come in handy.
Regards.