將此實例的子字符串中所有指定字符的匹配項替換為其他指定字符。
命名空間:System.Text
程序集:mscorlib(在 mscorlib.dll 中)
語法
C#
public StringBuilder Replace (
char oldChar,
char newChar,
int startIndex,
int count
)
參數
oldChar
要替換的字符。
newChar
替換 oldChar 的字符。
startIndex
此實例中子字符串開始的位置。
count
子字符串的長度。
返回值
對此實例的引用,其中從 startIndex 到 startIndex + count -1 范圍內的 oldChar 被 newChar 替換。
異常
異常類型 條件
ArgumentOutOfRangeException
startIndex+count 大於此實例值的長度。
- 或 -
startIndex 或 count 小於零。
備注
StringBuilder 的大小不變,這是因為只是替換字符。此方法區分大小寫。
平台
Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、
Windows Mobile for Pocket PC、Windows Mobile for Smartphone、
Windows Server 2003、Windows XP Media Center Edition、
Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition
.NET Framework 並不是對每個平台的所有版本都提供支持。有關受支持版本的列表,請參見系統要求。
版本信息
.NET Framework
受以下版本支持:2.0、1.1、1.0