C#Replace字符替换函数
它可以将字串内的字符替换为别的字符,可以嵌套使⽤,如下:
需要注意的是,它可以把字符替换为空,但不可以替换空字符,当不确定字符串是否为空时,可以进⾏以下判断,再替换:
⽰例的完整代码:
string aa="d";
if (aa=="d")
{
Console.WriteLine(aa.Replace("d", "a"));
字符串replace函数
}
//string b = aa.Replace(".", "").Replace("officeword", "doc").Replace("gw", "other") == "" ? "other" : aa.Replace(".", "").Replace("officeword", "doc").Replace("gw", "other");
// Console.WriteLine(b);

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。