6 ms·
if it works then thanks a lot, it's helpful
by losteden1 6y ago
if it works then thanks a lot, it's helpful
- solus_factor 6y agoIt does work, just pay attention to syntax: * "cool, stuff" will only match if both 'cool' and 'stuff' are present * "cool | stuff" will match if either 'cool' or 'stuff' is present * "cool, stuff | pizza" will either match both 'cool' and 'stuff' or 'pizza'
- solus_factor 6y agoActually, I slightly changed the syntax to be simpler: * "cool stuff" will only match if both 'cool' and 'stuff' are present * "cool, stuff" will match if either 'cool' or 'stuff' is present * "cool stuff, pizza" will either match both 'cool' and 'stuff' or 'pizza' Vertical line is also supported: "cool stuff | pizza".