Hi @Blaize
Can you show what you want to accomplish in regex101: build, test, and debug regex.
If you need help, try to follow the steps showed in: How to use Regex in Make? - Showcase - Make Community
I tried and the regex you shared it’s not valid.
?<=class="person-name">\n\s+)(\w+\s?\w+)(?=)
I think it misses the open parenthesis in the beginning before the question mark.
(?<=class="person-name">\n\s+)(\w+\s?\w+)(?=)
Using this in Regex101 it worked:
Make also worked:
You can import on your own and look the scenario:
blueprint_regex_html.json (8.1 KB)