Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个CString str
CString str
我想复制str[3]~ str[5]到一个全新的。我试过 C++ char* 的方法,不兼容。
str[3]~ str[5]
那么在 VC++ 中这样做的正确方法是什么
谢谢,
您是否尝试过使用MID功能?
str.Mid( 3, 3 ) 应该给你你正在寻找的子字符串。
更新参考: http: //msdn.microsoft.com/en-us/library/b4c90k3d (v=vs.80).aspx