1._tcschr(str , c);
Find a character in a string, using the current locale or a specified LC_CTYPE conversion state category.
从一个字符串中查找字符。 例如: CString str1 = "ABCD#EFGH"; CString str2 = _tcschr(str1,TEXT('#')); str2 结果为"#EFGH".
2.char *strtok(char *s, const char *delim);
分解字符串为一组字符串。s为要分解的字符串,delim为分隔符字符串。
strtok()用来将字符串分割成一个个片段。参数s指向欲分割的字符串,参数delim则为分割字符串,当strtok()在参数s的字符串中发现到参数delim的分割字符时则会将该字符改为\0 字符。在第一次调用时,strtok()必需给予参数s字符串,往后的调用则将参数s设置成NULL。每次调用成功则返回被分割出片段的指针。