我正在尝试使用c ++编辑大量的html文件。除了我尝试编辑src标签时,所有这些都有效。我认为这是因为引号。这是我的代码。
string strReplace2 = "src=\"\""; //string to replace
和
strTemp = "src=\"http://localhost/Media/TV Shows/The Big Bang Theory Season 6/" + filename + "\"";
当我运行程序时,除了写入文件的部分外,一切正常。
答案 0 :(得分:0)
您可以尝试将其替换为引号之间的内容..
void replace_between_quotes(std::string &str, const std::string &replacement)
{
std::size_t pos_f = str.find_first_of("\"");
std::size_t pos_e = str.find_last_of("\"");
if (pos_f < pos_e && pos_f != std::string::npos && pos_e != std::string::npos)
{
std::size_t len = pos_e - pos_f - 1;
str.replace(pos_f + 1, len, replacement);
}
}
int main()
{
std::string filename = "somefile";
std::string str = "src=\"http://localhost/Media/TV Shows/The Big Bang Theory Season 6/" + filename + "\"";
replace_between_quotes(str, filename);
std::cout<<str;
}