C 的String Format格式化引數

2021-05-23 01:11:47 字數 701 閱讀 3903

n或n

數字 console.write(「"「",2500000);         //2,500,000.00

c或c

貨幣 console.write(「"「",2.5);                 //$2.50

console.write(「"「",-2.5);                //($2.50)

d或d

十進位制數

console.write(「"「",25);                //00025

e或e

科學型

console.write(「"「",250000);          //2.500000e+005

f或f

固定點

console.write(「"「",25);                //25.00

console.write(「"「",25);                //25

g或g

常規 console.write(「"「",2.5);                //2.5

x或x

十六進製制

console.write(「"「",250);               //fa

console.write(「"「",0xffff);             //ffff

C 中String Format的使用

說明 string.format 將指定的 string 中的每個格式項替換為相應物件的值的文字等效項。例子 int ivisit 100 string szname jackfled response.write string.format 您的帳號是 訪問了 次.szname,ivisit c ...

C 的String Format格式化舉例

c 的string.format格式化舉例 stringstr1 string.format 56789 result 56,789.0 stringstr2 string.format 56789 result 56,789.00 stringstr3 string.format 56789 re...

String format方法的應用

string str null str string.format hi,s 小超 system.out.println str str string.format hi,s s s 小超 是個 大帥哥 system.out.println str system.out.printf 字母c的大寫是...