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

51,935 answers

573 users

How to get the first word from string in VB.NET

4 Answers

0 votes
Imports System

Public Class Test
    Public Shared Function first_word(s As String) As String
        For i As Integer = 0 To s.Length - 1
            If s(i) = " " Then
                Return s.Substring(0, i)
            End If
        Next
        Return ""
    End Function
    
    Public Shared Sub Main()
        Dim s As String = "vb.net c# java php c"
        
        Console.WriteLine(first_word(s))
    End Sub
End Class


' run
'
' vb.net

 



answered Apr 18, 2019 by avibootz
0 votes
Imports System

Public Class Test
    Public Shared Sub Main()
        Dim s As String = "vb.net javascript php c c++ python c#"
         
        Console.Write(s.Substring(0, s.IndexOf(" ")))
        
    End Sub
End Class



' run:
' 
' vb.net
'

 



answered Sep 8, 2019 by avibootz
0 votes
Imports System

Public Class Test
    Public Shared Sub Main()
        Dim s As String = "vb.net javascript php c c++ python c#"
         
        Dim first_word As String = s.Split(" ")(0)
         
        Console.Write(first_word)
        
    End Sub
End Class



' run:
' 
' vb.net
'

 



answered Sep 8, 2019 by avibootz
0 votes
Imports System

Public Class Test
    Public Shared Sub Main()
        Dim s As String = "vb.net javascript php c c++ python c#"
         
        Dim first_word As String
        
        first_word = if ((s.IndexOf(" ") > -1), s.Substring(0, s.IndexOf(" ")), s)

        Console.Write(first_word)
        
    End Sub
End Class



' run:
' 
' vb.net
'

 



answered Sep 8, 2019 by avibootz
...