show/hide this revision's text 2 there->their

Well one immediate problem with that approach is embedded escape chars. Given your example what would happen if the user entered there their name as follows:

Pet;er

or

Pe=;ter

or

pe;Name=Yeoi;

I am not sure what state data it is you are trying to hold, and without any context it's hard to make valid suggestions. Perhaps a first step would be to replace this with a key value pair, at least that negates the problem mentioned above and means you don't have to parse strings regularly.

show/hide this revision's text 1

Well one immediate problem with that approach is embedded escape chars. Given your example what would happen if the user entered there name as follows:

Pet;er

or

Pe=;ter

or

pe;Name=Yeoi;

I am not sure what state data it is you are trying to hold, and without any context it's hard to make valid suggestions. Perhaps a first step would be to replace this with a key value pair, at least that negates the problem mentioned above and means you don't have to parse strings regularly.