1. 程式人生 > >(轉)C#數字轉固定長度的字串

(轉)C#數字轉固定長度的字串

關於數字右對齊和用0填充格式化字串的方法


在向檔案或者報表輸出數字的時候,固定字串的長度向右對齊,用0填充其餘空間的情況很常見。在這種情況下,使用String類(System名稱空間)的Format方法就很方便。

Format方法可以用引數設定字串的格式以及指定相應的物件變數,本文提取一些經常用到的數字變換成字串的情形進行介紹。

使用Format方法把數字夾雜在字串中輸出

在介紹數字的輸出格式之前,首先回顧一下Format方法的基本用法。
Format方法的常用情形,就像以下的程式碼這樣把變數夾雜在字串中處理然後輸出。

string name = "鈴木";
int month = 1;
int day = 30;

string str = String.Format(
"{0}先生、今日是{1}月{2}日。", name, month, day);
// 變數str的內容:鈴木先生、今日是1月30日。
Dim name As String = "鈴木"
Dim month As Integer = 1
Dim day As Integer = 30

Dim str As String = String.Format( _
"{0}先生、今日是{1}月{2}日。", name, month, day)
' 變數str的內容:鈴木先生、今日是1月30日。

Format方法的使用例子(上:C#、下:VB)

在這裡,Format方法的第一個引數是用來指定字串格式的,它往往通過在普通字串中插入諸如{0}或{1}這樣的修飾專案來實現。

這種修飾專案是用大括號把從0開始1,2,3這樣的數字序列號包起來。在字串處理

時,把序號對應的物件轉換成字串替換即可。上述的例子就是,字串str的值是:鈴木先生、今日是1月30日。

注,所有的物件都通過呼叫ToString方法來轉換成字串。

數字的格式指定

可以通過往剛才所說的修飾專案中新增幾個引數來實現控制數字格式的目的。下表列出了幾個常見的例子。

指定格式 函式用法 輸出結果
固定寬度右對齊 String.Format("{0, 4}", num) “ 1”
固定寬度左對齊 String.Format("{0, -4}", num) “1 ”
用0填充 String.Format("{0:D4}", num)
或者
String.Format("{0:0000}", num)
“0001”
固定寬度並用0填充
String.Format("{0, 8:D4}", num) “ 0001”
常用的指定數字數字輸出格式的例子

這個表前兩項指定了生成字串的寬度。這隻需要在序列號的後面加上 “,整數字” 這樣的內容即可。負數的情況下表示左對齊。
第三項是用0填充空位的例子。這又有兩種方法。一種是形如{0:D4}這樣,在索引號後加上冒號,然後加上D(表示十進位制,Decimal,如果是十六進位制的話,就用X)加上表示寬度的整數(這裡例子是4)。這種表示方法叫做“標準數字格式字串”,具體可以參考MSDN的『標準數字格式字串』。
用0填充的另一種方法是{0:0000},在序列號後加上冒號加上寬度等同數值個數的填充字元(也叫做佔位符,英文placeholder。這裡是4個0,也可以是4個1,4個2)。具體可以參考MSDN的『自定義數字格式字串』。

表中最後一項演示了指定字串的寬度,並且用0填充空餘位置的方法。標準的語法是

{索引號, 字串寬度:格式描述符}
格式指定的語法

Format方法的例子程式
下面,先看看幾個例項程式

// formatint.cs

using System;

public class FormatInteger {
static void Main() {

string output;
int zero = 0;
int eleven = 11;

//// 例1

output = String.Format("4位右對齊【{0, 4}】", zero);
Console.WriteLine(output);
// 輸出:4
位右對齊【 0】

output = String.Format("4
位右對齊
【{0, 4}】", eleven);
Console.WriteLine(output);
//
 輸出:4位右對齊【 11】

//// 例2

Console.WriteLine ("【{0, 4}】【{1, 4}】", zero, eleven);
//
 輸出:【 0】【 11】

//// 例3

Console.WriteLine("4
位左對齊【{0, -4}】", zero);
//
 輸出:4位左對齊【0 】

Console.WriteLine("4
位左對齊
【{0, -4}】", eleven);
//
 輸出:4位左對齊【11 】


Console.WriteLine("4位0填充【{0:D4}】", zero);
//
 輸出:4位0填充
【0000】

Console.WriteLine("4
位0填充
【{0:D4}】", eleven);
//
 輸出:4位0填充【0011】


Console.WriteLine("4
位0填充
【{0:0000}】", zero);
//
 輸出:4位0填充【0000】

Console.WriteLine("4
位0填充
【{0:0000}】", eleven);
//
 輸出:4位0填充【0011】


Console.WriteLine("8位長度4位0填充【{0, 8:D4}】", zero);
//
 輸出8位長度4位0填充
【 0000】

Console.WriteLine("
8位長度4位0填充
【{0, 8:D4}】", eleven);
//
 輸出8位長度4位0填充【 0011】

//// 例4

Console.WriteLine(
"【{0, 4}】【{0, -4}】【{0:D4}】【{0:0000}】", eleven);
//
 輸出:【 11】【11 】【0011】【0011】
}
}

// 編譯方法:csc formatint.cs
Format方法的C#例項程式(formatint.cs)
' formatint.vb

Imports System

Public Class FormatInteger
Shared Sub Main()

Dim output As String
Dim zero As Integer = 0
Dim eleven As Integer = 11

'''' 例1

output = String.Format("4けた右詰め【{0, 4}】", zero)
Console.WriteLine(output)
'
 輸出:4けた右詰め【 0】

output = String.Format("4けた右詰め【{0, 4}】", eleven)
Console.WriteLine(output)
'
 輸出
:4けた右詰め【 11】

'''' 例2

Console.WriteLine ("【{0, 4}】【{1, 4}】", zero, eleven)
'
 輸出:【 0】【 11】

'''' 例3

Console.WriteLine("4けた左詰め【{0, -4}】", zero)
'
 輸出:4けた左詰め【0 】

Console.WriteLine("4けた左詰め【{0, -4}】", eleven)
'
 輸出
:4けた左詰め【11 】


Console.WriteLine("4けた0埋め【{0:D4}】", zero)
'
 輸出
:4けた0埋め【0000】

Console.WriteLine("4けた0埋め【{0:D4}】", eleven)
'
 輸出
:4けた0埋め【0011】


Console.WriteLine("4けた0埋め【{0:0000}】", zero)
'
 輸出
:4けた0埋め【0000】

Console.WriteLine("4けた0埋め【{0:0000}】", eleven)
'
 輸出
:4けた0埋め【0011】


Console.WriteLine("8けたかつ4けた0埋め【{0, 8:D4}】", zero)
'
 輸出
:8けたかつ4けた0埋め【 0000】

Console.WriteLine("8けたかつ4けた0埋め【{0, 8:D4}】", eleven)
'
 輸出
:8けたかつ4けた0埋め【 0011】

'''' 例4

Console.WriteLine( _
"【{0, 4}】【{0, -4}】【{0:D4}】【{0:0000}】", eleven)
'
 輸出:【 11】【11 】【0011】【0011】

End Sub
End Class

' 編譯方法:vbc formatint.vb

其它格式:


C#:String.Format數字格式化輸出


int a = 12345678;
   //格式為sring輸出
//   Label1.Text = string.Format("asdfadsf{0}adsfasdf",a);
//   Label2.Text = "asdfadsf"+a.ToString()+"adsfasdf";
//   Label1.Text = string.Format("asdfadsf{0:C}adsfasdf",a);//asdfadsf¥1,234.00adsfasdf
//   Label2.Text = "asdfadsf"+a.ToString("C")+"adsfasdf";//asdfadsf¥1,234.00adsfasdf

   double b = 1234.12543;
   a = 12345678;
   //格式為特殊的string樣式輸出
//   Label1.Text = string.Format("asdfadsf{0:C}adsfasdf",b);//asdfadsf¥1,234.13adsfasdf
//   Label2.Text = "asdfadsf"+b.ToString("C")+"adsfasdf";//asdfadsf¥1,234.13adsfasdf
//   Label1.Text = string.Format("{0:C3}",b);//¥1,234.125
//   Label2.Text = b.ToString("C3");//¥1,234.125
//   Label1.Text = string.Format("{0:d}",a);//十進位制--12345678
//   Label2.Text = b.ToString("d");//十進位制--相同的型別,轉換報錯
//   Label1.Text = string.Format("{0:e}",a);//指數--1.234568e+007
//   Label2.Text = b.ToString("e");//指數--1.234125e+003

//   Label1.Text = string.Format("{0:f}",a);//定點數--12345678.00
//   Label2.Text = b.ToString("f");//定點數--1234.13
//   Label1.Text = string.Format("{0:n}",a);//數值--12,345,678.00
//   Label2.Text = b.ToString("n");//數值--1,234.13
//   Label1.Text = string.Format("{0:x}",a);//十六進位制--bc614e
//   Label2.Text = b.ToString("x");//16--帶有小數不能轉換,出錯
//   Label1.Text = string.Format("{0:g}",a);//通用為最緊湊--12345678
//   Label2.Text = b.ToString("g");//通用為最緊湊--1234.12543
//   Label1.Text = string.Format("{0:r}",a);//轉來轉去不損失精度--整數不允許用,報錯
//   Label2.Text = b.ToString("r");//轉來轉去不損失精度--1234.12543
  
   b = 4321.12543;
   a = 1234;
   //自定義模式輸出:
//   0 描述:佔位符,如果可能,填充位
//   Label1.Text = string.Format("{0:000000}",a);// 001234
//   Label2.Text = string.Format("{0:000000}",b);// 004321
//   # 描述:佔位符,如果可能,填充位
//   Label1.Text = string.Format("{0:#######}",a);// 1234
//   Label2.Text = string.Format("{0:#######}",b);// 4321
//   Label1.Text = string.Format("{0:#0####}",a);// 01234
//   Label2.Text = string.Format("{0:0#0000}",b);// 004321

//   . 描述:小數點
//   Label1.Text = string.Format("{0:000.000}",a);//1234.000
//   Label2.Text = string.Format("{0:000.000}",b);//4321.125
   b = 87654321.12543;
   a = 12345678;
//   , 描述:數字分組,也用於增倍器
//   Label1.Text = string.Format("{0:0,00}",a);// 12,345,678
//   Label2.Text = string.Format("{0:0,00}",b);// 87,654,32
//   Label1.Text = string.Format("{0:0,}",a);// 12346
//   Label2.Text = string.Format("{0:0,}",b);// 87654
//   Label1.Text = string.Format("{0:0,,}",a);// 12
//   Label2.Text = string.Format("{0:0,,}",b);// 88
//   Label1.Text = string.Format("{0:0,,,}",a);// 0
//   Label2.Text = string.Format("{0:0,,,}",b);// 0
//   % 描述:格式為百分數
//   Label1.Text = string.Format("{0:0%}",a);// 1234567800%
//   Label2.Text = string.Format("{0:#%}",b);// 8765432113%
//   Label1.Text = string.Format("{0:0.00%}",a);// 1234567800.00%
//   Label2.Text = string.Format("{0:#.00%}",b);// 8765432112.54%
//   'abc' 描述:顯示單引號內的文字
//   Label1.Text = string.Format("{0:'文字'0}",a);// 文字12345678
//   Label2.Text = string.Format("{0:文字0}",b);// 文字87654321
//   \ 描述:後跟1要列印字的字元,也用於轉移符\n等
//   Label1.Text = string.Format("\"你好!\"");// "你好!"
//   Label2.Text = string.Format("\\c\\books\\new\\we.asp");//\c\books\new\we.asp
//   @描述:後跟要列印字的字元,
//   Label1.Text = string.Format(@"""你好!"""); // "你好!"要列印"則需要輸入兩對才可以
//   Label2.Text = string.Format(@"\c\books\new\we.asp");//\c\books\new\we.asp


格式 原始資料 結 果
"{0:P}" 0.40 40%

數字 {0:N2} 12.36 
數字 {0:N0} 13 
貨幣 {0:c2} $12.36 
貨幣 {0:c4} $12.3656 
貨幣 "¥{0:N2}" ¥12.36 
科學計數法 {0:E3} 1.23E+001 
百分數 {0:P} 12.25% P and p present the same.
日期 {0:D} 2006年11月25日 
日期 {0:d} 2006-11-25 
日期 {0:f} 2006年11月25日 10:30 
日期 {0:F} 2006年11月25日 10:30:00 
日期 {0:s} 2006-11-26 10:30:00 
時間 {0:T} 10:30:00

DateTime dt = DateTime.Now;
Label1.Text = dt.ToString();//2005-11-5 13:21:25
Label2.Text = dt.ToFileTime().ToString();//127756416859912816
Label3.Text = dt.ToFileTimeUtc().ToString();//127756704859912816
Label4.Text = dt.ToLocalTime().ToString();//2005-11-5 21:21:25
Label5.Text = dt.ToLongDateString().ToString();//2005年11月5日
Label6.Text = dt.ToLongTimeString().ToString();//13:21:25
Label7.Text = dt.ToOADate().ToString();//38661.5565508218
Label8.Text = dt.ToShortDateString().ToString();//2005-11-5
Label9.Text = dt.ToShortTimeString().ToString();//13:21
Label10.Text = dt.ToUniversalTime().ToString();//2005-11-5 5:21:25

Label1.Text = dt.Year.ToString();//2005
Label2.Text = dt.Date.ToString();//2005-11-5 0:00:00
Label3.Text = dt.DayOfWeek.ToString();//Saturday
Label4.Text = dt.DayOfYear.ToString();//309
Label5.Text = dt.Hour.ToString();//13
Label6.Text = dt.Millisecond.ToString();//441
Label7.Text = dt.Minute.ToString();//30
Label8.Text = dt.Month.ToString();//11
Label9.Text = dt.Second.ToString();//28
Label10.Text = dt.Ticks.ToString();//632667942284412864
Label11.Text = dt.TimeOfDay.ToString();//13:30:28.4412864

Label1.Text = dt.ToString();//2005-11-5 13:47:04
Label2.Text = dt.AddYears(1).ToString();//2006-11-5 13:47:04
Label3.Text = dt.AddDays(1.1).ToString();//2005-11-6 16:11:04
Label4.Text = dt.AddHours(1.1).ToString();//2005-11-5 14:53:04
Label5.Text = dt.AddMilliseconds(1.1).ToString();//2005-11-5 13:47:04
Label6.Text = dt.AddMonths(1).ToString();//2005-12-5 13:47:04
Label7.Text = dt.AddSeconds(1.1).ToString();//2005-11-5 13:47:05
Label8.Text = dt.AddMinutes(1.1).ToString();//2005-11-5 13:48:10
Label9.Text = dt.AddTicks(1000).ToString();//2005-11-5 13:47:04
Label10.Text = dt.CompareTo(dt).ToString();//0
Label11.Text = dt.Add(?).ToString();//問號為一個時間段

Label1.Text = dt.Equals("2005-11-6 16:11:04").ToString();//False
Label2.Text = dt.Equals(dt).ToString();//True
Label3.Text = dt.GetHashCode().ToString();//1474088234
Label4.Text = dt.GetType().ToString();//System.DateTime
Label5.Text = dt.GetTypeCode().ToString();//DateTime

Label1.Text = dt.GetDateTimeFormats('s')[0].ToString();//2005-11-05T14:06:25
Label2.Text = dt.GetDateTimeFormats('t')[0].ToString();//14:06
Label3.Text = dt.GetDateTimeFormats('y')[0].ToString();//2005年11月
Label4.Text = dt.GetDateTimeFormats('D')[0].ToString();//2005年11月5日
Label5.Text = dt.GetDateTimeFormats('D')[1].ToString();//2005 11 05
Label6.Text = dt.GetDateTimeFormats('D')[2].ToString();//星期六 2005 11 05
Label7.Text = dt.GetDateTimeFormats('D')[3].ToString();//星期六 2005年11月5日
Label8.Text = dt.GetDateTimeFormats('M')[0].ToString();//11月5日
Label9.Text = dt.GetDateTimeFormats('f')[0].ToString();//2005年11月5日 14:06
Label10.Text = dt.GetDateTimeFormats('g')[0].ToString();//2005-11-5 14:06
Label11.Text = dt.GetDateTimeFormats('r')[0].ToString();//Sat, 05 Nov 2005 14:06:25 GMT

Label1.Text = string.Format("{0:d}",dt);//2005-11-5
Label2.Text = string.Format("{0:D}",dt);//2005年11月5日
Label3.Text = string.Format("{0:f}",dt);//2005年11月5日 14:23
Label4.Text = string.Format("{0:F}",dt);//2005年11月5日 14:23:23
Label5.Text = string.Format("{0:g}",dt);//2005-11-5 14:23
Label6.Text = string.Format("{0:G}",dt);//2005-11-5 14:23:23
Label7.Text = string.Format("{0:M}",dt);//11月5日
Label8.Text = string.Format("{0:R}",dt);//Sat, 05 Nov 2005 14:23:23 GMT
Label9.Text = string.Format("{0:s}",dt);//2005-11-05T14:23:23
Label10.Text   string.Format("{0:t}",dt);//14:23
Label11.Text = string.Format("{0:T}",dt);//14:23:23
Label12.Text = string.Format("{0:u}",dt);//2005-11-05 14:23:23Z
Label13.Text = string.Format("{0:U}",dt);//2005年11月5日 6:23:23
Label14.Text = string.Format("{0:Y}",dt);//2005年11月
Label15.Text = string.Format("{0}",dt);//2005-11-5 14:23:23
Label16.Text = string.Format("{0:yyyyMMddHHmmssffff}",dt);


stringstr1 =string.Format("{0:N1}",56789);                //result: 56,789.0
stringstr2 =string.Format("{0:N2}",56789);                //result: 56,789.00
stringstr3 =string.Format("{0:N3}",56789);                //result: 56,789.000
stringstr8 =string.Format("{0:F1}",56789);                //result: 56789.0
stringstr9 =string.Format("{0:F2}",56789);                //result: 56789.00
stringstr11 =(56789 / 100.0).ToString("#.##");            //result: 567.89
stringstr12 =(56789 / 100).ToString("#.##");              //result: 567

C 或 c
貨幣
Console.Write("{0:C}", 2.5);   //$2.50
Console.Write("{0:C}", -2.5); //($2.50)

D 或 d
十進位制數
Console.Write("{0:D5}", 25);   //00025

E 或 e
科學型
Console.Write("{0:E}", 250000);   //2.500000E+005

F 或 f
固定點
Console.Write("{0:F2}", 25);   //25.00
Console.Write("{0:F0}", 25);   //25

G 或 g
常規
Console.Write("{0:G}", 2.5);   //2.5

N 或 n
數字
Console.Write("{0:N}", 2500000);   //2,500,000.00

X 或 x
十六進位制
Console.Write("{0:X}", 250);   //FA
Console.Write("{0:X}", 0xffff);   //FFFF

相關推薦

()C#數字固定長度字串

關於數字右對齊和用0填充格式化字串的方法 在向檔案或者報表輸出數字的時候,固定字串的長度向右對齊,用0填充其餘空間的情況很常見。在這種情況下,使用String類(System名稱空間)的Format方法就很方便。 Format方法可以用引數設定字串的格式以及指定相應

c# 數字ID與可見字串碼互的一種實現

c# 數字ID與可見字串碼互轉的一種實現 適用場景:有時使用者id等之類的欄位用的是int型別,但在有些時候不想讓這個id暴露,於是可以考慮把這個id轉換成一個字串,而且要可根據這個字串得到相應的id值 實現如下程式碼: using System; using System.Data; usi

c# 數字字串保留兩位小數

double a = 123456, b = 123456.1, c = 123456.12, d = 123456.123, e = 123456.126; Console.WriteLine(a.ToString("N")); //123,456.0

c# 數字成千分位字串 C# 數字帶逗號(千分位符、金錢千分位字元)

C# 數字帶逗號(千分位符、金錢千分位字元)   首先要明確帶了逗號之後  數字就變成字串了 ,不再是數字了。 昨天做專案的時候需要格式化數字變成帶逗號的,本來打算自己寫個方法的,後來時間太緊了,就打算從網上查個,查來查去都是要對字串的位進行操作,選

c/c++ 數字字串, 字串數字

char    str[] ="15.455";    int     i;    float     fp;    sscanf( str, "%d", &i );         // 將字串轉換成整數   i = 15    sscanf( str, "%f", &fp );      

c# 數字字符串保留兩位小數

double con nbsp 兩位小數 string spa 6.0 read 字符 double a = 123456, b = 123456.1, c = 123456.12, d = 123456.123, e = 123456.126;

c# 數字成千分位字符串

格式化數字 千分位 沒有 目的 其中 body 逗號 str 轉換成 首先要明確帶了逗號之後 數字就變成字符串了 ,不再是數字了。 昨天做項目的時候需要格式化數字變成帶逗號的,本來打算自己寫個方法的,後來時間太緊了,就打算從網上查個,查來查去都是要對字符串的位進行

C#數字大寫

using System; namespace ManPowerManage.BussinessRule { /// <summary> /// DecimalToUpper 的摘要說明。 /// </summary> public cla

C# 中 struct 固定長度(Socket報文頭規範)

[MarshalAs(UnmanagedType.I4)]此屬性標識 int型別 長度為4位元組int有好幾種:Int16 Int32 Int64意義同名,分別佔16位,32位,64位8位一位元組,所以分別佔2位元組,4位元組,8位元組C#對整數做了基元型別:short對映I

c語言-輸入任意長度字串

C語言,從標準輸入讀入幾行輸入,並顯示在標準輸出,每行的前面加上行號。 程式碼 #include <stdio.h> #include <stdlib.h> int main(void) { int ch; int line_no

格式化固定長度字串,格式化字串裡顯示百分號

一. 在程式設計過程中經常需要格式對齊,這就需要把字串格式成固定長度:     1: C++提供了setiosflags()來設定輸出格式,setw(int)設定輸出寬度:         cout<<setiosflags(ios::left)    

SQL Server中如何實現不固定長度字串字首後固定長度自動補0

實現要求:如 YD01,要變成固定6位長度,YD0001 解決思路: 1  要求出數字出現的第一個位置PATINDEX('%[0-9]%',FIELD)。 2 然後可以取出字首 3 取出數字 4 然後用right方法根據字本身長度和固定長度自動補0 SELE

C++數字型別轉換成字串

#include <iostream> #include <sstream> #include <string> using namespace std; int main() { int a = 55; double b = 65

遞迴擷取字串,返回固定長度字串集合

1.推送訊息內容長度不能超過255,超過分多條推送。 2.推送字串長度不確定 3.返回集合,裡面每個元素是長度為255的字串 String messageContent="長度自己輸入自己輸入"; List<String> strList = new

c++將數字轉換成固定長度字串

將數字i轉換成長度為4的字串,不足位補0 參考 string num2str(int i) { char ss[10]; sprintf(ss,"%04d",i);

c/c++ 字串,字元數字數字字元

在C/C++語言中沒有專門的字串變數,通常用字元陣列來存放字串。字串是以“\0”作為結束符。C/C++提供了豐富的字串處理函式,下面列出了幾個最常用的函式。   ● 字串輸出函式puts。   ● 字串輸出函式gets。   ● 字串連線函式strcat。   ● 字串複製

C語言字串,字元數字數字字元

在C/C++語言中沒有專門的字串變數,通常用字元陣列來存放字串。字串是以“/0”作為結束符。C/C++提供了豐富的字串處理函式,下面列出了幾個最常用的函式。   ● 字串輸出函式puts。   ● 字串輸出函式gets。   ● 字串連線函式strcat。   ●

C#數字、16進位制字串和位元組之間互

一個位元組包含8個二進位制位,一個十六進位制可表示4個二進位制位,所以,一個位元組可以由2個十六進位制表示 總結如下: (1)一個byte 對應兩位十六進位制位,而不是八位(32位二進位制位); (2)轉化為十六進位制之後,不足兩位的,高位要補零。

c# 財務報表數字大寫的方法

turn 方法 name 絕對值 人民幣 round || 報表 漢語 /// <summary>/// 數字轉大寫/// </summary>/// <param name="Num">數字</param>/// <

字串的倒序 字串數字 數字字串 獲取最長的單詞

#include <stdio.h> #include <ctype.h> #include <stdlib.h> #include <string.h> 字串的倒序“abcd”->“dcba” void Reverse_str(char