目前我正在从Excel工作表中读取行并更新SharePoint列表。其中一些是查找列。
现在说excel的一行是:
Distribution A+;#253;#Distribution FACTS;#256;#Distribution SX.e;#257
现在我的要求是我需要将它们拆分为:
ID;#Value;#ID;#Value;#ID;#Value
然后在列表中更新。
代码
if (string.IsNullOrEmpty(Convert.ToString(listTable.Rows[iRow][23]))) {
} else {
newlistitem["Product"] = Convert.ToString(listTable.Rows[iRow][23]);
}