Is it possible to create a regex that retrieves all capturing groups matching that type of html input:
<em>word1</em> <em>word2</em> <em>word3</em>
prefix: <em>word4</em> <em>word5</em>
<em>word6</em> <em>word7</em>
That matches
word4 word5
I have tried with Lookahead and Lookbehind Zero-Length Assertions but with no success.
Here is my try
https://regex101.com/r/lA9xA3/2
But I do know how to make groups repeating on every next occurence following my 'prefix: '
Thanks a lot,
Julien