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

51,772 answers

573 users

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

2 Answers

0 votes
Imports System
Imports System.Text.RegularExpressions

Public Class RemoveLeadingZerosFromString_VB_NET
    Public Shared Sub Main(ByVal args As String())
        Dim str As String = "0003429865.9301"
		
        str = Regex.Replace(str, "^0+(?!$)", "")
		
        Console.WriteLine(str)
    End Sub
End Class


' run:
'
' 3429865.9301
'

 



answered Nov 14, 2024 by avibootz
0 votes
Imports System

Public Class RemoveLeadingZerosFromString_VB_NET
    Public Shared Function removeLeadingZeroes(ByVal str As String) As String
        Dim index As Integer = 0

        While index < str.Length AndAlso str(index) = "0"c
            index += 1
        End While

        Return str.Substring(index)
    End Function

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



' run:
'
' 3429865.9301
'

 



answered Nov 14, 2024 by avibootz

Related questions

2 answers 134 views
1 answer 159 views
3 answers 167 views
1 answer 149 views
1 answer 126 views
2 answers 113 views
...