转义 String.Format 占位符

发布于 2024-12-26 11:37:32 字数 636 浏览 1 评论 0原文

我有以下字符串,

"ListId={1CC88B01-E60F-45D1-8B3C-28852574156D}&ID={0}&ContentTypeID=0x01003D458D19EF31D845B3A7727B0F2F8FC8"

我想这样使用它

String.Format("ListId={1CC88B01-E60F-45D1-8B3C-28852574156D}&ID={0}&ContentTypeID=0x01003D458D19EF31D845B3A7727B0F2F8FC8", MyValue)

WHERE MyValue would replace ID={0}

,但这会引发 System.FormatException。显然,这是因为 {1CC88B01-E60F-45D1-8B3C-28852574156D} guid 使用了 string.format 占位符值。现在我可以简单地根据需要拆分字符串调用 string.format() 并将其重新连接在一起,但是是否有某种方法可以通过某种方式“转义”占位符值来避免这样做?

I have the following string

"ListId={1CC88B01-E60F-45D1-8B3C-28852574156D}&ID={0}&ContentTypeID=0x01003D458D19EF31D845B3A7727B0F2F8FC8"

I would like to use it as such

String.Format("ListId={1CC88B01-E60F-45D1-8B3C-28852574156D}&ID={0}&ContentTypeID=0x01003D458D19EF31D845B3A7727B0F2F8FC8", MyValue)

WHERE MyValue would replace ID={0}

However this throws a System.FormatException. Obviously this is because of the {1CC88B01-E60F-45D1-8B3C-28852574156D} guid that uses the string.format placeholder value. Now I can simply split the string call string.format() as required and concat it back together but is there perhaps some way I can avoid doing that by "escaping" the placeholder value somehow?

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

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

发布评论

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

评论(2

我不吻晚风 2025-01-02 11:37:32

你只需要加倍大括号:

String.Format("ListId={{1CC8...156D}}&ID={0}&...", MyValue)

You just need to double the braces:

String.Format("ListId={{1CC8...156D}}&ID={0}&...", MyValue)
傲世九天 2025-01-02 11:37:32

使用双 {{ 或 }} 字符来转义它们。

Use double {{ or }} characters to escape them.

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