String: \"hello to the very tall person I am about to meet\"
What I want it to become is this:
String: hello to the very tall person I
Use the String.Substring method.
So, if your string is stored in a variable mystr, do as such:
mystr
mystr = mystr.Substring(1, mystr.Length - 2);