我已經有些代碼:問題在C++讀音變換角色
std::string str2("Hello\r\n");
if (str2.find ("\r\n") != std::string::npos)
Console::WriteLine("Enter!\n");
在控制檯屏幕: 輸入!
都好,但 如果我們從xml.GetData(),它返回字符串
std::string str2(xml.GetData());
if (str2.find ("\r\n") != std::string::npos)
Console::WriteLine("Enter!\n");
在控制檯屏幕創建STR2: 空
如何解析爲 「\ r \ n」,爲實例,從xml.GetData()
我已經解決了這個問題。在「str2.find(」\ r \ n「)」我犯了致命的錯誤。請寫下:str2.find(「\\ r \\ n」) – 2011-02-02 12:08:19