gpt4 book ai didi

c# - 删除重复的短语

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:53 25 4
gpt4 key购买 nike

我希望从任何给定字符串中删除重复的短语。

例子:

My_First_Post_My_First_Post.htm

那里会有两次“My_First_Post”这个短语,因此变成:

My_First_Post_.htm

有什么简单的方法吗?

最佳答案

您可以尝试正则表达式 - 当然要注意效率:

Regex re = new Regex(@"(?<m>(.+))(.*?)\k<m>", RegexOptions.Compiled);
string str = "My_First_Post_My_First_Post.htm";

re.Replace(str, "$1$2"); // My_First_Post_.htm

它会删除第一个最长的重复序列。使其至少包含 10 个字符,例如,将第一组更改为:

(?<m>(.{10,}))

要将字符之间的距离限制为 2,例如,将第二组更改为:

(.{,2}?)

对于 1 个字符,只需输入 (.??).

关于c# - 删除重复的短语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10059411/

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