I suspect my problem has a very simple solution but I am not experienced enough in creating Regular Expressions to see it. Any help would be appreciated as I am going around in circles and getting nowhere.
The task is to add rel="nofollow" to the end of hundreds of unique affiliate links. Each link ends with a unique numeric variable for each product. eg. ?id=1234">
What I want to end up with is ?id=1234" rel="nofollow">
Using Dreamweaver Search & Replace (in regular expression mode) I can find all the links using a Find string of:
?id=\d*">
What I can't figure out is the Replace string that adds the nofollow on the end.
TIA