I'm pretty decent with regular expressions, and now I'm trying once again to understand lookahead and lookbehind assertions. They mostly make sense, but I'm not quite sure how the order affects the result. I've been looking at this site which places lookbehinds before the expression, and lookaheads after the expression. My question is, does this change anything? A recent answer here on SO placed the lookahead before the expression which is leading to my confusion.
|
When tutorials introduce lookarounds, they tend to choose the simplest use case for each one. So they'll use examples like Try looking at some more realistic examples. One question that comes up a lot involves validating passwords; for example, making sure a new password is at least six characters long and contains at least one letter and one digit. One way to do that would be:
The character class For another example, suppose you need to find all occurrences of the word "there" unless it's preceded by a quotation mark. The obvious regex for that is Every regex engine has its own strengths and weaknesses, but one thing that's true of all of them is that they're quicker to find fixed sequences of literal characters than anything else--the longer the sequence, the better. That means it can be dramatically faster to do the lookbehind last, even though it means matching the word twice:
So the rule governing the placement of lookarounds is that there is no rule; you put them wherever they make the most sense in each case. |
||||
|
|
|
When we place a lookbehind after the expression, we're rechecking the string we've already matched. This is common when you have complex conditions (you can think about it as the
First, you capture an ampersand between two characters. Next, you check they were both not spaces ( |
|||||||
|
|
It's easier to show in an example than explain, I think. Let's take this regex:
What this means is:
All this will match strings like Note also that in most (probably all) implementations, lookbehinds have the limitation of being fixed-length. You can't use repetition/optionality operators like A sample run of this regex on the string
|
||||
|
|