如何处理“%1”在 QString::arg() 的参数中?

发布于 2024-10-21 08:25:20 字数 971 浏览 2 评论 0原文

每个人都喜欢

QString("Put something here %1 and here %2")
    .arg(replacement1)
    .arg(replacement2);

,但只要您有一丝可能 replacement1 实际上在任何地方包含 %1 甚至 %2,事情就会变得很棘手。然后,第二个 QString::arg() 将仅替换重新引入的 %1 或两个 %2 实例。无论如何,您不会得到您可能想要的文字 "%1"

有什么标准技巧可以克服这个问题吗?

如果您需要一个示例来玩,请使用这个

#include <QCoreApplication>
#include <QDebug>

int main()
{
    qDebug() << QString("%1-%2").arg("%1").arg("foo");
    return 0;
}

这将输出

"foo-%2"

而不是

"%1-foo"

预期的(不是)。

    qDebug() << QString("%1-%2").arg("%2").arg("foo");

给予

"foo-foo"

    qDebug() << QString("%1-%2").arg("%3").arg("foo");

给予

"%3-foo"

Everybody loves

QString("Put something here %1 and here %2")
    .arg(replacement1)
    .arg(replacement2);

but things get itchy as soon as you have the faintest chance that replacement1 actually contains %1 or even %2 anywhere. Then, the second QString::arg() will replace only the re-introduced %1 or both %2 occurrences. Anyway, you won't get the literal "%1" that you probably intended.

Is there any standard trick to overcome this?

If you need an example to play with, take this

#include <QCoreApplication>
#include <QDebug>

int main()
{
    qDebug() << QString("%1-%2").arg("%1").arg("foo");
    return 0;
}

This will output

"foo-%2"

instead of

"%1-foo"

as might be expected (not).

    qDebug() << QString("%1-%2").arg("%2").arg("foo");

gives

"foo-foo"

and

    qDebug() << QString("%1-%2").arg("%3").arg("foo");

gives

"%3-foo"

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

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

发布评论

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

评论(3

任谁 2024-10-28 08:25:20

请参阅有关 QString::arg() 的 Qt 文档:

QString str;
str = "%1 %2";
str.arg("%1f", "Hello"); // returns "%1f Hello"

See the Qt docs about QString::arg():

QString str;
str = "%1 %2";
str.arg("%1f", "Hello"); // returns "%1f Hello"
友谊不毕业 2024-10-28 08:25:20

请注意,多个参数的 arg() 重载仅采用 QString。如果并非所有参数都是 QString,您可以更改格式字符串中占位符的顺序:

QString("1%1 2%2 3%3 4%4").arg(int1).arg(string2).arg(string3).arg(int4);

变成

QString("1%1 2%3 3%4 4%2").arg(int1).arg(int4).arg(string2, string3);

这样,首先替换所有不是字符串的内容,然后同时替换所有字符串。

Note that the arg() overload for multiple arguments only takes QString. In case not all the arguments are QStrings, you could change the order of the placeholders in the format string:

QString("1%1 2%2 3%3 4%4").arg(int1).arg(string2).arg(string3).arg(int4);

becomes

QString("1%1 2%3 3%4 4%2").arg(int1).arg(int4).arg(string2, string3);

That way, everything that is not a string is replaced first, and then all the strings are replaced at the same time.

小忆控 2024-10-28 08:25:20

你应该尝试使用

QString("%1-%2").arg("%2","foo");

You should try using

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