Hello,
I have a string that I need to be able to get values from.
My string looks like this:
Demo 555: Item01=01,Item02=09,Item03=44,TEST01=1234,TEST02=12345, complete
I need a way to some how get the items in red above into it's own string like below, but I am not sure how to do it.
Anyone able to suggest a way in getting the values in red from my string?
(each value in red might be different in length)
I have a string that I need to be able to get values from.
My string looks like this:
Demo 555: Item01=01,Item02=09,Item03=44,TEST01=1234,TEST02=12345, complete
I need a way to some how get the items in red above into it's own string like below, but I am not sure how to do it.
B4X:
Dim demo As String
Dim item01 As String
Dim item02 As String
Dim item03 As String
Dim test01 As String
Dim test02 As String
Anyone able to suggest a way in getting the values in red from my string?
(each value in red might be different in length)