Hi
as most of you know, you can use formats when building strings
example:
strResult = String.Format("blablabla {0} blablabla {1} blablabla", input0, input1);
I was wondering if there is a default function to parse it back the other way round:
string[] inputs = ReParse(strResult, "blablabla {0} blablabla {1} blablabla");
(If not, then I guess the cleanest way is a regular expression :()
Thank you in advance.
