Hi, there as many ways.
Dim sSearch As String = "Lastname, FirstName"
Dim sLast As String = sSearch.Split(",")(1).Trim
Note: I am searching for the "," only, not including the space, just in case it is omited. If you search for ", " witch is comma+space then you can omit the...