如果要获取前5位
e.DataRow("商品编号") = e.DataRow("商品编码").substring(0,5)
如果要移除前5位
e.DataRow("商品编号") = e.DataRow("商品编码").substring(5)