How to check if a string starts and ends with another string in VB.NET

1 Answer

0 votes
Imports System
   
Public Class Test
    Public Shared Sub Main()
		Dim s As String = "vb.net c# c c++ php vb.net"
         
		If (s.StartsWith("vb.net") And s.EndsWith("vb.net")) Then
            Console.WriteLine("yes")
        else
            Console.WriteLine("no")
		End If
	
    End Sub
End Class
   
 
   
' run:
'
' yes
'

 



answered Nov 18, 2019 by avibootz
...