标签:ar sp c 代码 amp r line ef c++
typedef std::basic_string<TCHAR> tstring;
inline static void trim(tstring& s)
{
s.erase(0, s.find_first_not_of(_T("\r\t\n ")));
s.erase(s.find_last_not_of(_T("\r\t\n "))+1);
}
标签:ar sp c 代码 amp r line ef c++
原文地址:http://www.cnblogs.com/chengning/p/3998087.html