2008年11月3日 星期一

字元切割器-strtok


char pBuffer[5000];
char seps[] = "\r\n";
CString Inbuffer[12];


strcpy(pResponse,pBuffer);
Inbuffer[0] = strtok(pBuffer , seps); //char ->CString
Inbuffer[1] = strtok(NULL , seps);
if (Inbuffer[1] == "ACK“) return true;
else return false;

沒有留言:

[c#] process 使用方法

寫法1. Process proc = new Process(); / /PowerShell.exe path proc.StartInfo.FileName = @"c:\Windows\System32\ WindowsPowerShell\v1.0\ powe...