what I want is a regex that gets words that contains for example character a
and does not contain characters b
and c
it seemed to me that the following does half of the job.
^[^bc]+$
but I want words. and containing a
is not considered here.