Obviously, you can use | (pipe?), to represent OR, but can you match 'and' as well?
Specifically, I'm wanting to match paragraphs of text that contain ALL of a certain phrase, but in no particular order.
|
|
Obviously, you can use | (pipe?), to represent OR, but can you match 'and' as well? Specifically, I'm wanting to match paragraphs of text that contain ALL of a certain phrase, but in no particular order.
|
|||
|
|
|
The order is always implied in the structure of the regular expression. To accomplish what you want, you'll have to match the input string multiple times against different expressions. What you want to do is not possible with a single regexp. |
||||
|
|
|
Is it not possible in your case to do the AND on several matching results? in pseudocode
|
||
|
|
|
|
Use a non-consuming regular expression. The typical (i.e. Perl/Java) notation is:
This means "match expr but after that continue matching at the original match-point." You can do as many of these as you want, and this will be an "and." Example:
You can even add capture groups inside the non-consuming expressions if you need to save some of the data therein. |
||||||||||
|
|
|
If you use Perl regular expressions, you can use positive lookahead: For example
would be numbers greater than 100 and divisible by 5 |
||
|
|
|
|
You can do that with a regular expression but probably you'll want to some else. For example use several regexp and combine them in a if clause. You can enumerate all possible permutations with a standard regexp, like this (matches a, b and c in any order):
However, this makes a very long and probably inefficient regexp, if you have more than couple terms. If you are using some extended regexp version, like Perl's or Java's, they have better ways to do this. Other answers have suggested using positive lookahead operation. |
|||
|
|
|
|
You need to use lookahead as some of the other responders have said, but the lookahead has to account for other characters between its target word and the current match position. For example:
The In order to match a whole paragraph, you need to anchor the regex at both ends and add a final
The 'm' modifier is for multline mode; it lets the Finally, you want to make sure you're matching whole words and not just fragments of longer words, so you need to add word boundaries:
|
||
|
|