2024-05-16 04:55:42
2024-05-16 06:13:17
如果用MFC的CString 类,实现起来比较简单,可以使用Mid( int start, int count) 方法
如 :
CString str = "01 00 00 88 02 00 00 88 03 00 00 88 04 00 00 88";
int ct = str.GetLength();
for( int i = 0 ;i< ct; i+= 12)
{
CString str2 = str.Mid(i,12);
//对str2 进行处理
}