CString如何实现从某个指定位置开始查找?Find好像只能从0开始查找。CString如何实现从某个指定位置开始查找?Find好像只能从0开始查找。 [解决办法]可以从第n个位置查找啊 比如: CString str = "abcd "; int dex = str.Find(2);