C# 替换字符串中匹配的子字符串

发布于 2024-09-28 22:48:16 字数 96 浏览 6 评论 0原文

如何删除字符串中所有匹配的子字符串?例如,如果我有 20 40 30 30 30 30,那么我只有 20 40 30(而不是其他 30)。我使用正则表达式吗?如果是这样,怎么办?

How do I remove all matching substrings in a string? For example if I have 20 40 30 30 30 30, then I just 20 40 30 (and not the other 30s). Do I use a regex? If so, how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫南 2024-10-05 22:48:16

如果这些“子字符串”全部由空格分隔,您可以将其拆分,并获取不同的项目并重新创建字符串。

var str = "20 40 30 30 30 30";
var distinctstr = String.Join(" ", str.Split().Distinct());

If these "substrings" are all separated by whitespace, you could just split it, and take the distinct items and recreate the string.

var str = "20 40 30 30 30 30";
var distinctstr = String.Join(" ", str.Split().Distinct());
花间憩 2024-10-05 22:48:16

我认为给出你的问题的正确答案是使用替换功能:

string newString = oldString.Replace("30", "");

string newString = orldString.Replace(" 30", "");

删除空白..,

编辑重读...我的错误。对不起。没有意识到你想保留一个“30”。

I think the right answer given your question is to use the replace function:

string newString = oldString.Replace("30", "");

or

string newString = orldString.Replace(" 30", "");

to get rid of the blanks..,

Edit just reread... My mistake. sorry. Didn't realise you wanted to keep a single '30'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文