Is there any way to find a specific code with one or more gaps? For example, I want to replace
.setImageResource(R.drawable.*)
with
.setImageDrawable(ContextCompat.getDrawable(this, R.drawable.*))
Here * means the name will remain as was before.
