I have a string with has two types of separator.
String X = "20001=EDTS~^20002=USA~^20003=1170871875~^20004=1~^20005=0~^773=~^665=~^453=2~^448=0A~!447=D~!452=1~!~^448=0A~!447=D~!452=17~!~^11=001111652533408~^";
~^ denotes lone values
where ~! denotes groups of values.
448=0A~!447=D~!452=1~!~^448=0A~!447=D~!452=17~!~^
previously I was working off the assumption there was no repeating groups of data and simply mapping to a map based on the key being equal to the tag number. However this will not for for the repeating groups as they will overwrite.
EDIT I want to take values from this string and map them to a Different Objects attributes. basically the number to the left refers to a tag and the value is just the value. So tag 20002=USA, I will need to map the value USA to an attribute within my new object. Invalid values are just defaulted values so that flag up that they have been assigned but not got a value
Now I'm doing a bit of head scratching to think of a better way to map the data and with the groups. maintaining both the tag and the value associated with it.
448=0A~!447=D~!452=1~!be mapped to? – Kaj Jun 16 '11 at 11:09