基于 Qt 的 addSlashes 版本等效

发布于 2024-11-06 00:28:46 字数 867 浏览 1 评论 0原文

我刚刚编写了一个基于 Qt 的 php addSlashes 函数,我不会看到任何改进,对其提出建议。我计划使用此函数来填充一个包含数百个 insert 查询的文件,更具体地说,我将创建 php 数据库转储 之类的。

QString addSlashes(QString str) 

  {

    QString newStr;

    for(int i=0;i<str.length();i++)
     {

        if(str[i] == '\0')
         {
           newStr.append('\\');
           newStr.append('0');
         }
        else if(str[i] == '\'')
         {
            newStr.append('\'');
         }
        else if(str[i] == '\"')
         {
            newStr.append('\"');
         }
        else if(str[i] == '\\')
         {
            newStr.append('\\');
         }
        else
           newStr.append(str[i]);

     }
    return newStr;
}

I just wrote a Qt based php addSlashes function like, I wont to see any improvements, suggestions to it. I am planing to use this function to fill a file with hundred of insert query, to be more specific, I am going to create php database dump like.

QString addSlashes(QString str) 

  {

    QString newStr;

    for(int i=0;i<str.length();i++)
     {

        if(str[i] == '\0')
         {
           newStr.append('\\');
           newStr.append('0');
         }
        else if(str[i] == '\'')
         {
            newStr.append('\'');
         }
        else if(str[i] == '\"')
         {
            newStr.append('\"');
         }
        else if(str[i] == '\\')
         {
            newStr.append('\\');
         }
        else
           newStr.append(str[i]);

     }
    return newStr;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦中楼上月下 2024-11-13 00:28:46

我想我会将数据与代码分开,例如:

std::map<char, std::string> reps;

reps['\0'] = "\\\0";
reps['\''] = "\\'";
reps['\"'] = "\\\"";
reps['\\'] = "\\\\";

for (int i=0; i<str.length(); i++)
    if ((pos=reps.find(str[i])!=reps.end())
        newStr.append(pos->second);
    else
        newStr.append(str[i]);

当然,您可能更喜欢使用 QMap 而不是 std::map 。这会改变一些东西的拼写方式,但不会改变基本思想。

或者,由于每个“特殊”输出只是前面带有反斜杠的原始字符,因此您可以只使用需要反斜杠的 std::set 字符:

std::set<char> needs_slash;

needs_slash.insert('\'');
needs_slash.insert('\"');
needs_slash.insert('\0');
needs_slash.insert('\\');

for (int i=0; i<str.length(); i++) {
    if (needs_slash.find(str[i]) != needs_slash.end())
        newStr.append('\\');
    newStr.append(str[i]);
}

鉴于涉及的字符数量很少,您可以也可以使用 std::bitsetstd::vector 之类的东西。我们讨论的是 32 字节的存储(假设您只关心 256 个字符)。当你认真思考时,地图/集合只是被用作稀疏数组,但如果你只在一个(甚至几个)地方使用它,那么毫无疑问你会节省更多空间(在代码中)使用数组而不是使用集合/映射保存(在数据中)。

I think I'd separate the data from the code, something like:

std::map<char, std::string> reps;

reps['\0'] = "\\\0";
reps['\''] = "\\'";
reps['\"'] = "\\\"";
reps['\\'] = "\\\\";

for (int i=0; i<str.length(); i++)
    if ((pos=reps.find(str[i])!=reps.end())
        newStr.append(pos->second);
    else
        newStr.append(str[i]);

You may, of, course prefer to use a QMap instead of a std::map though. That'll change how you spell a few things, but doesn't change the basic idea.

Alternatively, since each "special" output is just the original character preceded by a backslash, you could just use an std::set of characters that need a backslash:

std::set<char> needs_slash;

needs_slash.insert('\'');
needs_slash.insert('\"');
needs_slash.insert('\0');
needs_slash.insert('\\');

for (int i=0; i<str.length(); i++) {
    if (needs_slash.find(str[i]) != needs_slash.end())
        newStr.append('\\');
    newStr.append(str[i]);
}

Given the small number of characters involved, you could also use something like an std::bitset or std::vector<bool> as well. We're talking about 32 bytes of storage (assuming you only care about 256 characters). When you get down to it, the map/set is just being used as a sparse array, but if you're only using it in one (or even a few) places, you'll undoubtedly save more space (in code) by using an array than you save (in data) by using the set/map.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文