原创 C# 中 string 的 Replace 需要返回值

2009-10-6 09:47 2563 6 6 分类: 软件与OS

C# 中 string 对象的 Replace 语法是:



string string.Replace(string oldValue, string newValue)


我们可能常常忘了应用其返回值,比如:要将 str 中的 "1" 替换成 "2",下面的做法是不正确的:



str.Replace("1", "2");


正确的做法是:



str = str.Replace("1", "2");

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
6
关闭 站长推荐上一条 /3 下一条