标签: c#-4.0 replace
我有很多html文件,我想为所有属于特定div的href标签添加一个rel =“nofollow”。
我认为c#代码可以做到。但是我如何只关联部分代码..?
有什么建议吗?我也不知道
答案 0 :(得分:0)
以下是我的想法:
最后这就是你可以做的事情:
string s1 = "<a href=\"mylink\"> this is link </a>"; string s2 = s1.Insert(s1.IndexOf(">"), " rel=\"nofollow\"");