int swscanf_s( const wchar_t *buffer, const wchar_t *format [, argument ] ... );
例如:取字符串的颜色值。
UINT R,G,B; CString szColor(_T("#FE00FA")); swscanf_s(szColor,_T("#%02x%02x%02x"),&R,&G,&B);
【VC】 swscanf_s 函数使用,方便快捷的转换数据格式
原文地址:http://blog.csdn.net/shen_001/article/details/41011723