Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,890 questions

51,817 answers

573 users

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 130 views
1 answer 140 views
4 answers 141 views
3 answers 153 views
2 answers 92 views
1 answer 144 views
1 answer 123 views
...