VB.net
Let's consider that we have 6 words: girl, boy, cat, dog, fish, whale
I want to be able to search for each of those words optionally with just a few lines, maybe just an If statement. However, I want to also make it possible that any of these words can show up in any order. I want to be able to recognise any of these words, if they come up in a string, I'd also like to have them accepted no matter how many times they come up.
In English I would write it like this:
If the string = girl and/or boy and/or cat and/or dog and/or fish and/or whale
Of course I also want to make sure that these words can turn up any amount of times.
I realize this is not how And and Or work in VB.net