String manipulation

smithsf22

Member
Joined
Jul 15, 2004
Messages
8
Programming Experience
Beginner
Hello, I am new to this and have what im sure you will think is an easy problem. I have a string like 23-23-4 and I want to separate it. It is not always the same amount of numbers in-between the dashes. I tried using InStr(sWrite, "-") to find the first one but I am lost as how to cut it out. Im not really looking for an answer but more for a website tutorial or something like that if anyone knows of a good one for string manipulation.

Thanks in advance
 
either research the Split function, or you can simply write a function to cut out each number and return those values
 
Back
Top