kdjonesmtb2
Technical User
Hello,
I would like to assign variable names to the elements of this array
See inputText below:
inputText is a text field coming from a web application
dim outputArray
dim inputText
dim message
inputText = "6:CPT:97014:1"
outputArray = split(inputText," :")
for each x in outputArray
message = message & x & vbCRLF
next
msgbox message
I would like to assign variable names to the elements of this array
See inputText below:
inputText is a text field coming from a web application
dim outputArray
dim inputText
dim message
inputText = "6:CPT:97014:1"
outputArray = split(inputText," :")
for each x in outputArray
message = message & x & vbCRLF
next
msgbox message