c# StringBuilder.Replace 方法 (Char, Char, Int32, Int32)
程序员文章站
2023-11-14 14:26:10
将此实例的子字符串中所有指定字符的匹配项替换为其他指定字符。 命名空间:system.text 程序集:mscorlib(在 mscorl...
将此实例的子字符串中所有指定字符的匹配项替换为其他指定字符。
命名空间: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
命名空间: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
上一篇: Python中的默认参数详解
推荐阅读
-
c# StringBuilder.Replace 方法 (Char, Char, Int32, Int32)
-
C#实现char字符数组与字符串相互转换的方法
-
C#语言中字符类char的使用方法(总结)
-
c# StringBuilder.Replace 方法 (Char, Char, Int32, Int32)
-
【转载】C#中Convert.ToInt32方法将字符串转换为Int32类型
-
C#实现char字符数组与字符串相互转换的方法
-
详细介绍C#语言中字符类char的使用方法总结
-
详细介绍C#语言中字符类char的使用方法总结
-
C#实现char字符数组与字符串相互转换的方法详解
-
C#实现char字符数组与字符串相互转换的方法介绍