Here are some common regular expression patterns that I seem to use regularly, but can never remember how they're written:
Lookbehinds and Lookaheads
Lookbehind (where xyz
is the pattern you're looking for):
(?<=xyz)this_will_be_matched
Here are some common regular expression patterns that I seem to use regularly, but can never remember how they're written:
Lookbehind (where xyz
is the pattern you're looking for):
(?<=xyz)this_will_be_matched