So I am currently trying to pull information from an email using make. I’ve done this in the past pulling the text content, but for whatever reason, this email doesn’t have text content, only html content. The code I’m trying to get to via regex is:
<span class="person-name">
JOHN DOE (12345678910*Business)
</span>
The regex I’ve tried to use is (?<=class="person-name">\n\s+)(\w+\s?\w+)(?=) Which seems to be working regexr, but when I run it on Make, its pretty much grabbing every html tag. I’m not sure what I’m doing wrong.