程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> String.format中大括號的加入方法,string.format中大

String.format中大括號的加入方法,string.format中大

編輯:C#入門知識

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!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved