string q1 = "What [replace string] years? ";
In the above question I want to replace "years of study" with `model.values`
so my required output should be as:
string q1 = "What [replace string] years?";
其中「2013,2014」將來自數據庫。如何在c#中的特定位置替換字符串?
所以我需要附加值到靜態問題,值將來自數據庫使用mvc模型。
如何在一個特定的位置替換字符串我堅持有任何建議它會幫助我提前感謝。
Model.values的類型是什麼? – Fran
@Fabjan我會使用string.Join(「,」,Model.values)。取決於Model中值的數量,它可能更高效,因爲它在內部使用StringBuilder。你的方法將會爲循環的迭代創建一個新的字符串。 – Fran