split problems

juggernot

Well-known member
Joined
Sep 28, 2006
Messages
173
Programming Experience
Beginner
I'm trying to resseruct my dead calculator project. I'm trying to split the label using the delimiter "+", just to start off. This should create two substrings right? I then want to add those two substrings together. However, this is my first time using split and I have no idea how to do this. Can somone help me.
 
actually it'd be along the lines of:

Dim strToSplit As String = "I am happy"
Dim a() As String = strToSplit.Split(" ")
 
Back
Top