can anyone is help me with that:
I need to find all words from list containing letters [t OR d] AND [k OR c] but not any of [s,z,n,m]
I figured out first part, but don't know how to include stop list:
\w*[t|d]\w*[k|c]\w*
in Python notation
Thank you in advance