If I can format a string using
string.Format("my {0} template {1} here", 1, 2)
can I reverse the process - I provide the template and a filled-in string, .net returns arg0, arg1, etc.?
|
|
There's no elegant way to reverse the formatted string. But you can try this if you want a simple function.
|
|||||||
|
|
String.Format is not reversable in general case. If you have exactly one {0} it is actaully possible to write generic code that at least extract string representation of the value. You definitely can't reverse it to produce original objects. Samples:
|
|||
|
|
|
Use regular expressions to parse out group matches.
I don't have VS open, so I can't verify if I have the method name right, but you'll know what I mean. By using paranthesis, the returned match result will have groups[0] and groups[1] containing your extracted matches. |
|||||
|
|
There is no built-in
Would result in "my 1 2 3", the reverse would be:
|
|||
|
|
One way to do this would be regular expressions. For your example you could do:
It wouldn't be hard to write an extension method to do exactly what you want based on this technique. Just for fun, here's my first naive attempt. I haven't tested this but it should be close.
This will allow you to do
The method is VERY naive and has many problems, but it will basically find any placeholders in the format expression, and find the corresponding text in the source string. It will give you the values corresponding to the placeholders listed from left to right, without reference to ordinal, or any format specified in the placeholder. This functionality could be added. Another problem is that any special regex characters in the format string will cause the method to fall over. Some more processing of |
|||||||
|