您必须结合Remove
and Insert
,例如:
strData.Remove(intPosition, intLenght).Insert(intPosition, strValue);
以上假设 的长度strValue
等于intLenght
。如果strValue
可能更长,那么要复制该Mid
语句,我们需要执行以下操作:
strData.Remove(intPosition, intLenght)
.Insert(intPosition, strValue.Substring(0, intLenght));