您必须合并Remove
和Insert
,例如:
strData.Remove(intPosition, intLenght).Insert(intPosition, strValue);
以上假设strValue
的长度等于intLenght
。如果strValue
可能更长,那么要复制Mid
语句,我们需要这样做:
strData.Remove(intPosition, intLenght)
.Insert(intPosition, strValue.Substring(0, intLenght));