gpt4 book ai didi

c# - 删除两个字符串之间的点

转载 作者:行者123 更新时间:2023-11-30 19:41:01 31 4
gpt4 key购买 nike

有没有办法去掉两个字符串之间的点?

我有两个字符串:Linkw2.IDLinkw2.t169ID

我希望它们是 Linkw2IDLinkw2t169ID

我正在使用 string substring = InpParam.Substring(0, InpParam.IndexOf("."));但它会返回 Linkw2Linkw2

最佳答案

您可以使用 String.Replace删除带有空字符串的点。如果要更改值,请不要忘记将结果分配回字符串。

This method does not modify the value of the current instance. Instead, it returns a new string in which all occurrences of oldValue are replaced by newValue, MSDN.

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

Returns a new string in which all occurrences of a specified string in the current instance are replaced with another specified string, MSDN

关于c# - 删除两个字符串之间的点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21380474/

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