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

51,811 answers

573 users

How to get the first digit of int number in VB.NET

3 Answers

0 votes
Imports System
 
Public Class Test
    Public Shared Sub Main()
        Dim n As Integer =78262
        Dim s As String = n.ToString()
  
        Console.Write(s(0))
    End Sub
End Class
 
 
 
' run:
'
' 7
'

 



answered Aug 29, 2019 by avibootz
0 votes
Imports System
 
Public Class Test
    Public Shared Sub Main()
        Dim i As Integer =78262
        Dim s As String = i.ToString()
        Dim num As Integer = Int(s(0)) - 48
  
        Console.Write(num)
    End Sub
End Class
 
 
 
' run:
'
' 7
'

 



answered Aug 30, 2019 by avibootz
0 votes
Imports System

Public Class Test
    Public Shared Sub Main()
        Dim n As Integer = 76123

        Dim first_digit As Integer = n.ToString().Substring(0, 1)
        
        Console.WriteLine(first_digit)
    End Sub
End Class



' run:
'
' 7
'

 



answered Aug 30, 2019 by avibootz

Related questions

1 answer 187 views
1 answer 181 views
1 answer 505 views
2 answers 197 views
1 answer 161 views
...