我正在寻找程序示例,该程序修改其 exe 中的字符串。
我在 Windows 下使用 C++、Visual Studio。
我在 Windows 中搜索了工作示例,但找不到任何工作代码。
我需要简单的代码,它将向用户询问字符串:
string strTest = "";
(if strTest != "")
{
cout << "Modified: " << strTest << endl;
}
cin >> strText;
并且代码应该重写:
string strTest = "";
要对该键入的用户进行字符串化:
string strTest = "SomeStringFromUser";
在 C++ 中,如何将字符串(从字符串 strTest = "")修改为字符串,即用户键入的内容?(例如到 strTest = "foo")?