- Home
·
- String Manipulation
·
- Take one string and makes it into two peices. Will take something like this BOB:123456, and turn
Take one string and makes it into two peices. Will take something like this BOB:123456, and turn
Take one string and makes it into two peices. Will take something like this "BOB:123456", and turn it into 2 string one with value of "BOB"
Rate Take one string and makes it into two peices. Will take something like this BOB:123456, and turn
(1(1 Vote))
rem into 2 seperate string.
rem example, the fox & the hound
rem num1 = the fox, num 2 = the hound
rem where "&" is you can replace with any character you want to split a string
rem with.
num1 = Left(text1.Text, InStr(text1.Text, "&") - 1)
num2= Mid(text1.Text, InStr(text1.Text, "&") + 1, Trim(Len(text1.Text)) - 1)
text2.text = num1
text3.text = num2
Take one string and makes it into two peices. Will take something like this BOB:123456, and turn Comments
No comments yet — be the first to post one!
Post a Comment