-6

我希望将该字符串转换为 String.Format 但无法正确格式化。请如果你能帮助我。

string s = "$(\"#container\").notify();$(\"#container\").notify(\"create\", \"basic-template\", { title: '{0}', text: '{1}'},{ expires: false, speed: 1000 });";

我想把它变成string.Format。我尝试转换它,但它显示错误。输入字符串的格式不正确

4

2 回答 2

1

{字符串中的字符和}字符并不意味着 string.Format 替换。您需要通过将它们加倍来逃避它们,{{并且}}.

于 2012-07-21T07:27:33.743 回答
0

这管用吗?

string s = "$(\"#container\").notify();$(\"#container\").notify(\"create\", \"basic-template\", {{ title: '{0}', text: '{1}'}},{{ expires: false, speed: 1000 }});"
于 2012-07-21T08:17:44.623 回答