asp.net String.format中大括号的加入方法
作者:
String.format中大括号的加入方法,需要的朋友可以参考下。
复制代码 代码如下:
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!
您可能感兴趣的文章:
- Java字符串格式化功能 String.format用法详解
- Java String.format()的用法
- Java之String.format()方法案例讲解
- 快速入门介绍Java中强大的String.format()
- Java中String.format的使用方法总结
- JavaScript实现格式化字符串函数String.format
- JAVA字符串格式化-String.format()的使用
- String.Format大全(C# Java)
- C#中string.format用法详解
- javascript模拟实现C# String.format函数功能代码
- js中的string.format函数代码
- javascript下string.format函数补充
- javascript下利用arguments实现string.format函数
- 为javascript添加String.Format方法