我有一個控制器,其中我將html文件讀入一個變量。將一個變量的值替換爲另一個值
讀它之後,我從變量爲其他值替換一些值,
但問題是,沒有什麼happend。
這裏有什麼問題?
有人能幫我一個忙嗎?
string path = "/mypath/myfile.html";
string s = System.IO.File.ReadAllText(path);
s.Replace("@%a%@","hi");
s.Replace("@%b%@","yo");
s.Replace("@%c%@","asdfasdf");
s.Replace("@%d%@", "http://www.google.com");
.NET中的字符串是不可變的 –