Answers for "vb.net substring"

VBA
0

vb.net substring

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
Posted by: Guest on March-16-2022

Code answers related to "VBA"

Browse Popular Code Answers by Language