gpt4 book ai didi

c# - 使用扩展方法替换字符串

转载 作者:太空狗 更新时间:2023-10-30 00:18:46 27 4
gpt4 key购买 nike

<分区>

如果我有字符串,并且我想用星号替换该字符串中的最后一个字符。

我试过了

var myString = "ABCDEFGH";
myString.ReplaceCharacter(mystring.Length - 1, 1, "*");

public static string ReplaceCharacter(this string str, int start, int length, string replaceWith_expression)
{
return str.Remove(start, length).Insert(start, replaceWith_expression);
}

我尝试使用此扩展方法,但这不起作用。为什么这不起作用?

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com