Let\'s say I have a CString variable carrying the string \"Bob Evans\". I want to copy from position 4 until the end of the original CString to a new CString, but I am having tr
newStr = original.Mid(4);