How to copy part of a string to a different string in VB.NET

1 Answer

0 votes
Module Module1

    Sub Main()

        Dim s As String = "basic is a very nice programming language"
        Dim part As String

        part = s.Substring(0, 8) ' from first char 0 copy 8 chars
        Console.WriteLine(part)

        part = s.Substring(21, 29 - 21)  ' from char (0 to 21) 22 copy (29 - 21) 8 chars
        Console.WriteLine(part)

        part = s.Substring(21, 8) ' same as above
        Console.WriteLine(part)

    End Sub

End Module

'run:
' 
'basic is
'programm
'programm



 



answered Sep 9, 2015 by avibootz
edited Feb 21, 2016 by avibootz

Related questions

1 answer 173 views
1 answer 262 views
7 answers 592 views
1 answer 245 views
1 answer 266 views
2 answers 283 views
1 answer 120 views
...