gpt4 book ai didi

c++ - 用\'替换字符串中的单引号

转载 作者:搜寻专家 更新时间:2023-10-30 23:49:01 24 4
gpt4 key购买 nike

我有一个包含 ' 字符的字符串。我想用\' 替换所有这些,因为它用于插入数据库。有人可以建议我一种有效的方法吗?不幸的是,我不能使用 boost 并且仅限于 STL。

最佳答案

\ 出现在源字符串中时,不要忘记转义。

std::string escape(std::string const &s)
{
std::size_t n = s.length();
std::string escaped;
escaped.reserve(n * 2); // pessimistic preallocation

for (std::size_t i = 0; i < n; ++i) {
if (s[i] == '\\' || s[i] == '\'')
escaped += '\\';
escaped += s[i];
}
return escaped;
}

关于c++ - 用\'替换字符串中的单引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5342063/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com