如何使用一個String.Format
格式和輸出轉換到它的投入?
例如:
string formatString = "My name is {0}. I have {1} cow(s).";
string s = String.Format(formatString, "strager", 2);
// Call the magic method...
ICollection<string> parts = String.ReverseFormat(formatString, s);
// parts now contains "strager" and "2".
我知道我可以使用正則表達式來做到這一點,但我想用相同的格式字符串,所以我只需要維護的代碼,而不是兩個一行。
杜佩:http://stackoverflow.com/qu estions/1410012/parsing-formatted-string – 2009-10-02 21:01:36
我的不好;我不知道這是一個騙局。謝謝Mehrdad,我現在投票結束。 – 2009-10-02 21:05:14
這是一個騙局,但我的問題沒有在那裏回答。 – strager 2009-10-02 21:10:03