Can anyone help me with this?
I'm trying to parse out this String into variables. I'm assuming I would have to loop through the string.
Here is the string but this string would always be different.
So every time there is a "-" strip the data out and when there is a "," it would loop and strip those out
example String
Example130-Your Analysis Bus-0.00-W-20032,Help130-My Analysis Aug-0.33-C-20052
example results
Example130
Your Analysis Bus
0.00
W
20032
loop again
example results
Help130
My Analysis Aug
0.33
C
20052
I'm trying to parse out this String into variables. I'm assuming I would have to loop through the string.
Here is the string but this string would always be different.
So every time there is a "-" strip the data out and when there is a "," it would loop and strip those out
example String
Example130-Your Analysis Bus-0.00-W-20032,Help130-My Analysis Aug-0.33-C-20052
example results
Example130
Your Analysis Bus
0.00
W
20032
loop again
example results
Help130
My Analysis Aug
0.33
C
20052