Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Right-align formatted strings

Total Hit ( 3315)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


The String.Format function supports many formatting options, but none allows you to display right-aligned columns of numbers, as in:

   1.00
  12.00
  123.00
1,234.00

However, you can easily create a helper function that works like String.Format, takes an additional length argument, and aligns the result to that length:

Click here to copy the following block
Function RightFormat(ByVal formatString As String, ByVal length As Integer, _
  ByVal value As Object) As String
  Return String.Format("{0:" & formatString & "}", value).PadLeft(length)
End Function

Here's an example of how you can use the above function:

Click here to copy the following block
Dim n As Integer
For Each n In New Integer() {10, 100, 1000, 1000}
  Console.WriteLine(RightFormat("##,##0.00", 10, n))
Next


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.