我有一个类似模板的.htm
文件,我想阅读内容并更新页面的特定部分。
该文件具有典型的html格式,在某些时候我添加了特殊字符串{0}
以便能够格式化它。此外,我确保{0}
是唯一一次出现。
我尝试过以下操作,但却抛出异常Input string was not in a correct format
:
sText = @File.ReadAllText("template.htm"));
formated = string.Format(sText, "Add some additional text here");
这是实现这个的正确方法吗?
由于
修改
变量(debug)的内容如下所示:
"<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html xmlns=\"http://www.w3.org/1999/xhtml\"><head>\r\n <title></title>\r\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n <style type=\"text/css\">\r\nbody {\r\n margin: 0;\r\n mso-line-height-rule: exactly;\r\n padding: 0;\r\n min-width: 100%;\r\n}\r\ntable {\r\n border-collapse: collapse;\r\n border-spacing: 0;\r\n}\r\ntd {\r\n padding: 0;\r\n vertical-align: top;\r\n}\r\n.spacer,\r\n.border {\r\n font-size: 1px;\r\n line-height: 1px;\r\n}\r\n.spacer {\r\n width: 100%;\r\n}\r\nimg {\r\n border: 0;\r\n -ms-interpolation-mode: bicubic;\r\n}\r\n.image {\r\n font-size: 0;\r\n Margin-bottom: 24px;\r\n}\r\n.image img {\r\n display: block;\r\n}\r\n.logo {\r\n mso-line-height-rule: at-least;\r\n}\r\n.logo img {\r\n display: block;\r\n}\r\nstrong {\r\n font-weight:
修改2
为了以防万一这样的人搜索这样的东西,我实际上找到了一个叫HTMLAgilityPack的东西,看起来正是我需要的东西!
答案 0 :(得分:4)
string.Format()中的格式字符串查找许多字符/模式来完成其工作。 (通常)使用&#34;任意&#34;非常危险。那里的文字。 在您的情况下,更好(更安全)的解决方案是:
sText = @File.ReadAllText("template.htm"));
formated = sText.Replace("{0}", "Add some additional text here");