I'd like to run through a string and replace :

<A href="stuff">

with

<A href="stuff" Target="blank">

I want to do something like:

mystring=replace(mystring,"<A href*>",<A href* Target="blank">")

But of course that won't work.