CString strText=" Enable:X 10000 Y 100000 Z 100000";
          
char *p; 
char *buffer; 
char *delims={ ": .," }; 
buffer=strText.GetBuffer(strText.GetLength()); //CString 转换为Char *
MessageBox(buffer);
p=strtok(buffer,delims); 
while(p!=NULL){ 
p=strtok(NULL,delims); 
MessageBox(p);


怎么读不到Enable这个单词啊