I have a string notsengine = "111,555(888"
I want to split this into an array so it reads
111
555
888
I am using this code to split by comma, but how do I get it to split by the bracket aswell ?
engineArray = Split(notsengine,",")
Thank You.
Welcome to ASP/Free, a community dedicated to helping beginners and professionals alike in improving their knowledge of Microsoft's development and administration technologies. Sign up today to gain access to the combined insight of tens of thousands of members.
I have a string notsengine = "111,555(888"
I want to split this into an array so it reads
111
555
888
I am using this code to split by comma, but how do I get it to split by the bracket aswell ?
engineArray = Split(notsengine,",")
Thank You.
like that
engineArray = Split(Split(notsengine,","),")")
GK
__________________________________________________ _____
if you found this post is useful click scale(right side on this reply ) and agree
you can write
engineArray = Split(replace(notsengine,"(",","),",")
...
bye
Become Part of This Conversation
Join NowFor Free!