I need to extract a specific link from a bunch of text.
Here is the e-mail I need to extract:
Unfortunately, there is text before the link on the line, so the full line looks like this:
View all 2 updates PitchBook>
Here is the regex I came up with:
“^((?!view|all|2|updates).)(?=.?\bhttps\b)(?=.?\bview_all\b).*$”
but it doesn’t work. Anyone have any ideas?