How would you split this String format into parts:
message_type={any_text}&message_number={digits}&code={digits}&id={digits}&message={any_text}×tamp={digits_with_decimal}
Where in the message={any_text}
part, the {any_text} may contain a &
and a =
thus not being able to do String split by &
or =
And the order of the message parts may be scrambled or not in this order. I am thinking that a pattern can be extracted for a solution, ={the_text_needed}&
however this would not apply for the last part of the String as there will be no &
at the end.