Ideally, I am trying to retrieve the characters between "\" and "." while then adding everything after "."

Original

text = "\\mysvr\tsccomm\NonPublish\HelpSite\File_Expirations\Date_Teli.doc"

In real world, I will not know the name of the document being displayed in "text".

After the retrieval, text would be set to:

text = "Date_Teli.doc"

Hope this makes sense....