Private Sub Command1_Click()
Dim i As Integer
Dim strAll As String
Dim strCity() As String
    strAll = "1245673234 sadf 2 0994"
    strCity = Split(strAll, " ", , vbTextCompare)
    For i = 0 To UBound(strCity)
        List1.AddItem strCity(i)
    Next
End Sub