Hi guys!
I am tottally going brain dead.. :P
I type:
Then it will call this:
so w would be equal to:
Now how do I split this by the comma and make it an array of strings like I would like them to be seperate like:
string1 = "123"
and
string2 = "456"
Please reply on helping me thanks!
I tried using the "split" function but unfortunately I am not understanding it too well :/
I am tottally going brain dead.. :P
I type:
Code:
System.setMouse(123, 456);
Code:
If ln.Contains("System.setMouse(") Then
Dim startquote As Integer = ln.IndexOf("(") + 1
Dim endquote As Integer = ln.LastIndexOf(")")
Dim w As String = ln.Substring(startquote, endquote - startquote)
End If
Code:
123, 456
string1 = "123"
and
string2 = "456"
Please reply on helping me thanks!
I tried using the "split" function but unfortunately I am not understanding it too well :/