I have a string that I want to get a specific part of.
the string will always be in the format of:
FirstName LastName, (Position)
I want to be able to get just the LastName part of the string (after the first space and before the comma)
the LastName part of the string will always be different but the FirstName may be the same
how would i go about doing this