Reputation: 306
i need to search for initialization of classes by name, the project is big, and i want to use regex to find the instances inside the intellij idea . Here is a list of classes name:
BdService
BdClusterService
BdServiceClient
BdClusterServiceClient
BdServicesManager
BdServiceClientsManager
I need an advice and regexs also, but maybe you know the proper way to find the initialization of this classes?
Upvotes: 13
Views: 15520
Reputation: 40438
You can try Find in Files (ctrl-shift-f
):
Bd[a-zA-z]*Service
Upvotes: 19