I've been thinking of some random things lately, and this one caught my fancy.
How do I write a regexp for a word which contains X, Y and Z (or for that matter any combination of letters), but not necessarily in that order.
I tried
[^xyz]*x[^xyz]*y[^xyz]*z
But this searches in that order only
We could do
[^xyz ]*[xyz][^xyz ]*[xyz][^xyz ]*[xyz]
But that is just useless because it also matches only xy.
I am aiming for a regexp that will match words which contain x, y and z in all of the following orders
- xyz
- xzy
- yzx
- yxz
- zxy
- zyx
EDIT
Forgot to add this before (sorry bout that)
How about also making it match words like
abxcydz (x, y and z come in any order as above)
if text.contains(X) and text.contains(Y) and text.contains(Z) do ...). – Heinzi Feb 1 '12 at 15:49