它可以將字串內的字元替換為別的字元,可以嵌套使用,如下: 需要註意的是,它可以把字元替換為空,但不可以替換空字元,當不確定字元串是否為空時,可以進行以下判斷,再替換: 示例的完整代碼: string aa="d"; if (aa=="d") { Console.WriteLine(aa.Replac ...
它可以將字串內的字元替換為別的字元,可以嵌套使用,如下:
需要註意的是,它可以把字元替換為空,但不可以替換空字元,當不確定字元串是否為空時,可以進行以下判斷,再替換:
示例的完整代碼:
string aa="d";
if (aa=="d")
{
Console.WriteLine(aa.Replace("d", "a"));
}
//string b = aa.Replace(".", "").Replace("officeword", "doc").Replace("gw", "other") == "" ? "other" : aa.Replace(".", "").Replace("officeword", "doc").Replace("gw", "other");
// Console.WriteLine(b);