Hi not sure of this is what you want all it does is extact. Follow/Sol:Erath/ out of the url

VB Code:
  1. Private Sub Command1_Click()
  2. Dim e_pos As Integer
  3. Dim url As String
  4.     url = "cel://Follow/Sol:Earth"
  5.     e_pos = InStr(1, url, "cel://", vbBinaryCompare)
  6.    
  7.     If e_pos <> 0 Then
  8.         MsgBox Mid(url, e_pos + 6, Len(url) - e_pos - 6)
  9.     End If
  10. End Sub

Let me know if this is wrong or you need something else.