I want the extract the two values(113.654321 and 114.654321) from the CString
CString sValue = "113.123456 114.654321";
I tried to use the TrimLeft function of the CString Class, which is
sNewValue1=svalue.TrimLeft(_T(" ")) and
sNewValue2=sValue.TrimRight(_T(" "))
but I cannot get the expected value. Can anyone help?
Thanks in advance!