ok well a hyperlink is just text as far as your ASP is concerned... it is the browser that sees certain text and makes it into a link, right?
So if you had:[tt]
MyString = "The quick brown fox jumped over the lazy dog."[/tt]
And if you wanted to locate the character position of the word "fox"...
[tt]
StartPosition = InStr(MyString, "fox")
If StartPosition > 0 Then
Response.Write "Fox found at position " & cStr(StartPosition)
End If
[/tt]
And if you wanted to replace "brown" with "red" ....
[tt]
MyString = Replace(MyString, "brown", "red")
[/tt]