Obviously, you can use the | (pipe?) to represent OR, but is there a way to represent AND as well?
|
OR
AND
Specifically, I\'d like to
If you use Perl regular expressions, you can use positive lookahead:
For example
(?=[1-9][0-9]{2})[0-9]*[05]\b
would be numbers greater than 100 and divisible by 5