iMacro's is a Firefox extension that can use Javascript. I just have no idea how to make a EVAL method for removing text.
So basically what I have is a bit of extracted text from an email. It is all being extracted. I need to remove a certain part of the extracted text. Examples below.
Example of Extracted text:
Code:
Click the link below:
https://www.google.com/
What I need extracted text to be:
Code:
https://www.google.com/
This is what I am doing with the iMacro:
Code:
TAG POS=1 TYPE=A FORM=ACTION:/ ATTR=CLASS:masked_links
TAG POS=4 TYPE=P ATTR=TXT:* EXTRACT=TXT
SET !VAR1 {{!EXTRACT}}
SET !EXTRACT NULL
URL GOTO={{!VAR1}}
Any possible help?