Check string contain multiple words inside

Hi everyone.

I have a string "I have an apple and I like play football "

I want to check if string contain both of words “apple” and “football” then it will return true.

I want to use two method to check this : Regex Or Match activity.

How to do it ?

Thanks you!

Check this regex example: regex101: build, test, and debug regex
It shows variations to your use case and explains what each component means. Also that should work as your solution too :slight_smile:

Thanks you bro :slight_smile: