String Format « Data Type « Visual C++ .NET

Home
Visual C++ .NET
1.2D
2.Class
3.Collections
4.Data Type
5.Database ADO.net
6.Delegate
7.Development
8.File Directory
9.Function
10.Generics
11.GUI Form
12.Language Basics
13.Network
14.Reflection
15.Security
16.Statement
17.Structure
18.Thread
19.XML
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Visual C++ .NET » Data Type » String Format 
1.{ 0, -30 } 30 characters in width, left-justified
2.{ 1, 10 } 10 characters in width, right-justified
3.{ 2, 10:c2 } 10 characters in width, currency with 2 decimal places
4.String::Format("Currency format: {0:c2}", dbl);
5.String::Format("Scientific format: {0:e6}", dbl);
6.String::Format("Fixed-point format: {0:f6}", dbl);
7.String::Format("General format: {0:g6}", dbl);
8.String::Format("Number format: {0:n6}", dbl);
9.String::Format("Percent format: {0:p6}", dbl);
10.String::Format("Round-trip format: {0:r6}", dbl);
11.String::Format("Decimal format: {0:d6}", i);
12.String::Format("General format: {0:g6}", i);
13.String::Format("Number format: {0:n0}", i);
14.String::Format("Hexadecimal format: {0:x8}", i);
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.