格式化字符中,各个格式所代表的意思。

'  This code example demonstrates the String.Format() method.
'
 Formatting for this example uses the "en-US" culture.

Imports  System
Imports  Microsoft.VisualBasic

Class Sample
   
Public Enum Color
      Yellow 
= 1
      Blue 
= 2
      Green 
= 3
   
End Enum
 'Color

   
Private Shared thisDate As DateTime = DateTime.Now
   
   
Public Shared Sub Main()

      
' Store the output of the String.Format method in a string.
      Dim s As String = ""

      Console.Clear()

      
' Format a negative integer or floating-point number in various ways.
      Console.WriteLine("Standard Numeric Format Specifiers")
      s 
= String.Format("(C) Currency: . . . . . . . . {0:C}" & vbCrLf & _
                        
"(D) Decimal:. . . . . . . . . {0:D}" & vbCrLf & _
                        
"(E) Scientific: . . . . . . . {1:E}" & vbCrLf & _
                        
"(F) Fixed point:. . . . . . . {1:F}" & vbCrLf & _
                        
"(G) General:. . . . . . . . . {0:G}" & vbCrLf & _
                        
"    (default):. . . . . . . . {0} (default = 'G')" & vbCrLf & _
                        
"(N) Number: . . . . . . . . . {0:N}" & vbCrLf & _
                        
"(P) Percent:. . . . . . . . . {1:P}" & vbCrLf & _
                        
"(R) Round-trip: . . . . . . . {1:R}" & vbCrLf & _
                        
"(X) Hexadecimal:. . . . . . . {0:X}" & vbCrLf, _
                        
- 123- 123.45F)
      Console.WriteLine(s)

      
' Format the current date in various ways.
      Console.WriteLine("Standard DateTime Format Specifiers")
      s 
= String.Format("(d) Short date: . . . . . . . {0:d}" & vbCrLf & _
                        
"(D) Long date:. . . . . . . . {0:D}" & vbCrLf & _
                        
"(t) Short time: . . . . . . . {0:t}" & vbCrLf & _
                        
"(T) Long time:. . . . . . . . {0:T}" & vbCrLf & _
                        
"(f) Full date/short time: . . {0:f}" & vbCrLf & _
                        
"(F) Full date/long time:. . . {0:F}" & vbCrLf & _
                        
"(g) General date/short time:. {0:g}" & vbCrLf & _
                        
"(G) General date/long time: . {0:G}" & vbCrLf & _
                        
"    (default):. . . . . . . . {0} (default = 'G')" & vbCrLf & _
                        
"(M) Month:. . . . . . . . . . {0:M}" & vbCrLf & _
                        
"(R) RFC1123:. . . . . . . . . {0:R}" & vbCrLf & _
                        
"(s) Sortable: . . . . . . . . {0:s}" & vbCrLf & _
                        
"(u) Universal sortable: . . . {0:u} (invariant)" & vbCrLf & _
                        
"(U) Universal sortable: . . . {0:U}" & vbCrLf & _
                        
"(Y) Year: . . . . . . . . . . {0:Y}" & vbCrLf, _
                        thisDate)
      Console.WriteLine(s)

      
' Format a Color enumeration value in various ways.
      Console.WriteLine("Standard Enumeration Format Specifiers")
      s 
= String.Format("(G) General:. . . . . . . . . {0:G}" & vbCrLf & _
                        
"    (default):. . . . . . . . {0} (default = 'G')" & vbCrLf & _
                        
"(F) Flags:. . . . . . . . . . {0:F} (flags or integer)" & vbCrLf & _
                        
"(D) Decimal number: . . . . . {0:D}" & vbCrLf & _
                        
"(X) Hexadecimal:. . . . . . . {0:X}" & vbCrLf, _
                        Color.Green)
      Console.WriteLine(s)
   
End Sub
 'Main
End Class
  ' Sample
'
'
This code example produces the following results:
'
'
Standard Numeric Format Specifiers
'
(C) Currency: . . . . . . . . ($123.00)
'
(D) Decimal:. . . . . . . . . -123
'
(E) Scientific: . . . . . . . -1.234500E+002
'
(F) Fixed point:. . . . . . . -123.45
'
(G) General:. . . . . . . . . -123
'
    (default):. . . . . . . . -123 (default = 'G')
'
(N) Number: . . . . . . . . . -123.00
'
(P) Percent:. . . . . . . . . -12,345.00 %
'
(R) Round-trip: . . . . . . . -123.45
'
(X) Hexadecimal:. . . . . . . FFFFFF85
'
'
Standard DateTime Format Specifiers
'
(d) Short date: . . . . . . . 6/26/2004
'
(D) Long date:. . . . . . . . Saturday, June 26, 2004
'
(t) Short time: . . . . . . . 8:11 PM
'
(T) Long time:. . . . . . . . 8:11:04 PM
'
(f) Full date/short time: . . Saturday, June 26, 2004 8:11 PM
'
(F) Full date/long time:. . . Saturday, June 26, 2004 8:11:04 PM
'
(g) General date/short time:. 6/26/2004 8:11 PM
'
(G) General date/long time: . 6/26/2004 8:11:04 PM
'
    (default):. . . . . . . . 6/26/2004 8:11:04 PM (default = 'G')
'
(M) Month:. . . . . . . . . . June 26
'
(R) RFC1123:. . . . . . . . . Sat, 26 Jun 2004 20:11:04 GMT
'
(s) Sortable: . . . . . . . . 2004-06-26T20:11:04
'
(u) Universal sortable: . . . 2004-06-26 20:11:04Z (invariant)
'
(U) Universal sortable: . . . Sunday, June 27, 2004 3:11:04 AM
'
(Y) Year: . . . . . . . . . . June, 2004
'
'
Standard Enumeration Format Specifiers
'
(G) General:. . . . . . . . . Green
'
    (default):. . . . . . . . Green (default = 'G')
'
(F) Flags:. . . . . . . . . . Green (flags or integer)
'
(D) Decimal number: . . . . . 3
'
(X) Hexadecimal:. . . . . . . 00000003
'
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值