Dim arrString(-1) As String Dim strQuelle,strZiel1,strZiel2 As String //strQuelle = "Hello World" arrString=Split(strQuelle," ") strZiel1=arrString(0) //strZiel1 = "Hello" strZiel2=arrString(1) //strZiel2 = "World"
Veröffentlicht am Mai 25, 2007 um 1:35 pm
Dim arrString(-1) As String Dim strQuelle,strZiel1,strZiel2 As String //strQuelle = "Hello World" arrString=Split(strQuelle," ") strZiel1=arrString(0) //strZiel1 = "Hello" strZiel2=arrString(1) //strZiel2 = "World"