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,788 answers

573 users

How to delete the first digit from a number in VB.NET

1 Answer

0 votes
Imports System

Public Class Test
    Public Shared Sub Main()
        Dim n as Integer = 853271
      
        Console.WriteLine(Int(Math.Log10(n)))
        Console.WriteLine(Int(Math.Pow(10, Int(Math.Log10(n)))))
            
        n = n Mod Int(Math.Pow(10, Int(Math.Log10(n))))
 
        Console.WriteLine(n)
    End Sub
End Class


' run:
'
' 5
' 100000
' 53271

 





answered Jun 5, 2020 by avibootz

Related questions

1 answer 58 views
1 answer 403 views
1 answer 89 views
3 answers 307 views
...