Format to specify two regex in contains parameter in find module

I want to grep for two words in contains attribute.

It doesn't work if I give like this to search for patterns scm.com and DD:

Contains: .*scm\.com.* , dd\:

The contains in find only check one line at the time, so you cant create regex that expand multiple line.
If your expression is on the same line you can use
   .*scm\.com.*dd\:

It it's on multiple line you need to run one find to find files containing the first expression, and the run a second find on the result to check for the second expression.

So it might be easier to use command or shell.

Oh I wasn’t aware of that ! Thank you Kia.

Neither did I, I had to read the source code to find out.