You don't need to use Regular Expressions for splitting key value paired data.
You can use Split() function of string to get the data in a array.
like or you can use the clsKeyValuePars er class.
like you use it in you're projects.
That's a waste of resources. Split is going to be much quicker and easier than regular expressions. No sense bogging down your software just because you want to do it a certain way.
Comment