How To Use Split Function In VB
How To Use Split Function In VB
API Declarations
Dim strinput as string
Rate How To Use Split Function In VB
(1(1 Vote))
'Split Function gives Output In array
strinput ="Ab1,Ab2,Ab3,Ab4"
varOutput=Split(strinput,",")
'-------------------------
'OutPut Will Be :
varOutput(0)=Ab1
varOutput(1)=Ab2
varOutput(2)=Ab3
varOutput(3)=Ab4
How To Use Split Function In VB Comments
No comments yet — be the first to post one!
Post a Comment