#ifndef UNICODE
#define UNICODE
#endif
#include <Windows.h>
#include <cstring>
#include <cstdio>
int main()
{
TCHAR* greeting = L"HELL\0O W\0ORLD!";
wprintf(L"%s\n",greeting);
_wsystem(L"pause");
return 0;
}
如何删除“问候”中的所有空字符(尾随除外)?我想避免从头开始创建函数。我的意思是 PHP 的 str_replace 的 C++ 对应物。