In eclipse its possible to do a file search Ctrl+H. I need to do this but it must only return a perfect match like ‘com.company.base’ and not all strings that have this as a prefix, eg.
com.company.base.model
com.company.base.db
com.company.base.ui
etc.
I have tried to enable the regex option but am not sure how to formulate that it should be a perfect match. Any ideas?
Try that:
You need to escape the
.– otherwise it means any character.\smeans white space.