I want to take many lines which look similar to this:
<A href="http://www.fda.gov/cvm/index/bst/bst.htm" title="">BST from the FDA</A>
And turn it into this
[BST | http://www.fda.gov/cvm/index/bst/bst.htm]
Which is the format I need for entry into a "wiki"
Any ideas.
I do have textpad.
reformating <a href> tag for wiki
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
Marjorie Roswell
Re: reformating <a href> tag for wiki
I did it!:
Replace:
<A href="\(http://[#a-zA-Z0-9-_~/.].*\)" title=\".*\">\(.*\)</A>
With:
[\2 | \1]
Replace:
<A href="\(http://[#a-zA-Z0-9-_~/.].*\)" title=\".*\">\(.*\)</A>
With:
[\2 | \1]