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,955 questions

51,897 answers

573 users

How to remove trailing zeros from a string in VB.NET

2 Answers

0 votes
Imports System

Public Class RemoveTrailingZeros_VB_NET
    Public Shared Function removeTrailingZeros(ByVal str As String) As String
        Dim index As Integer

		For index = str.Length - 1 To 0 step -1
            If str(index) <> "0"c Then
                Exit For
            End If
        Next

        Return str.Substring(0, index + 1)
    End Function

    Public Shared Sub Main(ByVal args As String())
        Dim str As String = "457833.8591000"
	
        str = removeTrailingZeros(str)
	
        Console.WriteLine(str)
    End Sub
End Class


' run:
'
' 457833.8591
'

 



answered Nov 15, 2024 by avibootz
0 votes
Imports System

Public Class RemoveTrailingZeros_VB_NET
    Public Shared Sub Main(ByVal args As String())
        Dim str As String = "457833.8591000"
		
        str = str.TrimEnd("0"c)
		
        Console.WriteLine(str)
    End Sub
End Class



' run:
'
' 457833.8591
'

 



answered Nov 15, 2024 by avibootz

Related questions

1 answer 142 views
1 answer 77 views
1 answer 127 views
1 answer 90 views
2 answers 81 views
2 answers 108 views
...