欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net String.format中大括号的加入方法

程序员文章站 2024-03-08 15:37:40
复制代码 代码如下:string.format("{0} world!","hello") //将输出 hello world!,没有问题,但是只要在第一个参数的任意位置加...

复制代码 代码如下:

string.format("{0} world!","hello") //将输出 hello world!,没有问题,但是只要在第一个参数的任意位置加上一个大括号:
string.format("{0} wo{rld!","hello") //就会产生一个异常,异常信息是:input string was not in a correct format.
//解决办法:string.format("{0} wo{{rld!","hello")
//or
string.format("{0} wo{1}rld!","hello","{")
//它们都将输出 hello wo{rld!