It all depends on what exactly you are going for. If you are looking for the exsistance of a given group of characters in a string such as you have shown, you can use the InStr() function.
Consider:
Dim string1, pos
string1 = "Jonathan"
pos = InStr(string1, "Jon")
Response.Write pos '1 would be wrote to the screen
hth.
-Doug
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
.: Wrox Technical Editor / Author :.
Wrox Books 24 x 7
================================================== =========