I have a regular expression with the Reference Name: ${id}
.
I want to create another regular expression and I was wondering if I can use the above reg ex reference name.
Here is the reg exp I am trying to create:
<a href=\\"/([^"]+?)/e\?retURL=%2F${id}\\"
Currently when I run my script the above regular expression doesn't return a value.
The above regular expression works fine if use the id value as follows:
<a href=\\"/([^"]+?)/e\?retURL=%2F801000000092838\\"
But instead of using the actual id value (801000000092838
) I want it to run with the reg exp name ${id}
to pull the value dynamically.