Anyone know how to search with a wildcard in Intel...
# random
c
Anyone know how to search with a wildcard in Intellij? i.e. I want to find all instances of
Copy code
MySingleton.[THE WILD CARD].copy
in my code
p
Doesn't work for you the option for regex when shift + cmd + f
👍 1
e
if you're using structural search, enter
Copy code
MySingleton.$Property$.copy($Parameter$)
select
$Parameter$
, add a count modifier on the right of [0, ∞]
👍 1
785 Views