VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



How To Use Split Function In VB

by abhijit more (1 Submission)
Category: Databases/Data Access/DAO/ADO
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Sat 25th March 2006
Date Added: Mon 8th February 2021
Rating: (1 Votes)

How To Use Split Function In VB

API Declarations


Dim strinput as string


Rate How To Use Split Function In VB



'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








Download this snippet    Add to My Saved Code

How To Use Split Function In VB Comments

No comments have been posted about How To Use Split Function In VB. Why not be the first to post a comment about How To Use Split Function In VB.

Post your comment

Subject:
Message:
0/1000 characters