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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,037 questions

40,915 answers

573 users

How to delete the N digit of a number in VB.NET

1 Answer

0 votes
Imports System

Public Class Test
    Public Shared Sub Main()
        Dim number As Integer = 853271
        Dim N As Integer = 4
         
        Dim s As String = Convert.ToString(number)
        Dim beforeN As String = s.Substring(0, N - 1)
        Dim afterN As String = s.Substring(N, s.Length - N)
         
        number = Integer.Parse(beforeN + afterN)
 
        Console.WriteLine(number)
    End Sub
End Class




' run:
'
' 85371

 





answered Jun 5, 2020 by avibootz

Related questions

1 answer 75 views
2 answers 112 views
1 answer 37 views
1 answer 405 views
...