我正在尝试在C#字符串的位置插入一个字符串,失败了

这是代码段。

  if(strCellContent.Contains("<"))
   {
         int pos = strCellContent.IndexOf("<");
         strCellContent.Insert(pos,"&lt;");
   }


请告诉我解决方案

最佳答案

返回值包含所需的新字符串。

strCellContent = strCellContent.Insert(pos,"&lt;");

关于c# - C#中的字符串插入问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5401869/

10-12 15:32