Imports System
Public Class Test
Public Shared Sub Main()
Dim s As String = "c# javascript php c c++ python vb.net"
Dim array() As String = s.Split(" ")
For Each item As String In array
Console.WriteLine(item)
Next
End Sub
End Class
' run:
'
' c#
' javascript
' php
' c
' c++
' python
' vb.net
'