Hello i have the problem that i can't find a way to remove all the tags outside quotation marks.
I have the following string:
<a href="https://adsecurity.org/?p=3299">https://adsecurity.org/?p=3299</a><br> <a href="https://attack.mitre.org/mitigations/M1047">[MITRE]Mitre Att&ck - Mitigation - Audit</a>
And what i want is only the urls so:
https://adsecurity.org/?p=3299 https://attack.mitre.org/mitigations/M1047
Thanks to whoever can help me!
Solved! Go to Solution.
Hi @mrbubi001,
You could achieve this with a piece of Regex in tokenise mode:
a href="(.*?)">
I've attached my workflow for you to download if needed!
Kind regards,
Jonathan