vb.net substring

The solution for “vb.net substring” can be found here. The following code will assist you in solving the problem.

Module Module1
Sub Main()

Dim st As String = “Guru99”

Dim subst As String = st.Substring(0, 4)

Console.WriteLine(“The substring is: {0}”, subst)

Console.ReadKey()
End Sub

End Module

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts