How to format decimal places in VB.NET

4 Answers

0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Console.WriteLine(String.Format("{0:0.00}", 1238.4567))
		
        Console.WriteLine(String.Format("{0:0.00}", 1238.5))
		
        Console.WriteLine(String.Format("{0:0.00}", 1238.0))
    End Sub
End Class





' run:
'
' 1238.46
' 1238.50
' 1238.00
'

 



answered Apr 6, 2022 by avibootz
0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Console.WriteLine(String.Format("{0:0.##}", 1238.4567))
		
        Console.WriteLine(String.Format("{0:0.##}", 1238.5))
		
        Console.WriteLine(String.Format("{0:0.##}", 1238.0))
    End Sub
End Class






' run:
'
' 1238.46
' 1238.5
' 1238
'

 



answered Apr 6, 2022 by avibootz
0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Console.WriteLine(String.Format("{0:00.0}", 1238.4567))
		
        Console.WriteLine(String.Format("{0:00.0}", 123.4567))
		
        Console.WriteLine(String.Format("{0:00.0}", 1247.5))
		
        Console.WriteLine(String.Format("{0:00.0}", 1247.0))
		
        Console.WriteLine(String.Format("{0:00.0}", 3.14159))
		
        Console.WriteLine(String.Format("{0:00.0}", -3.14159))
    End Sub
End Class







' run:
'
' 1238.5
' 123.5
' 1247.5
' 1247.0
' 03.1
' -03.1
'

 



answered Apr 6, 2022 by avibootz
0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Console.WriteLine(String.Format("{0:0,0.0}", 1238.4567))
		
        Console.WriteLine(String.Format("{0:0,0.0}", 12390.4467))
		
        Console.WriteLine(String.Format("{0:0,0.0}", 123907.4567))
		
        Console.WriteLine(String.Format("{0:0,0.0}", 1247.4))
		
        Console.WriteLine(String.Format("{0:0,0.0}", 1247.0))
    End Sub
End Class








' run:
'
' 1,238.5
' 12,390.4
' 123,907.5
' 1,247.4
' 1,247.0
'

 



answered Apr 6, 2022 by avibootz

Related questions

1 answer 147 views
1 answer 159 views
4 answers 185 views
3 answers 198 views
2 answers 123 views
1 answer 163 views
1 answer 140 views
...