How to extract substrings for a CString

Apr 23, 2013 at 3:13pm
Hey, I am working on this project where an user enters a time(HH:MM:SS) in an edit box. Once they click the send time button, I retrieve the CString(11:34:45). After retrieving I want to store hours(11) in a variable, mintues(34) in a variable, and seconds(45) in a variable. I have tried GetBuffer, but have not had any luck. Does any one know how to to do this? Any help will be greatly appreciated.
Apr 23, 2013 at 3:34pm
to copy 2 characters starting from 4th: strncpy(dest, source + 3, 2)
Apr 23, 2013 at 3:55pm
Topic archived. No new replies allowed.