Link to home
Start Free TrialLog in
Avatar of madmare
madmareFlag for Israel

asked on

VB6 split string

Hi,
 I have string contain the char "-", how do I split the string by char into two strings
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

dim arr() as string
arr = split(yourstring, "-")
ASKER CERTIFIED SOLUTION
Avatar of Guy Hengel [angelIII / a3]
Guy Hengel [angelIII / a3]
Flag of Luxembourg image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial