gpt4 book ai didi

c# - 在 C# 优化中使用 Replace 和 Substring 过滤字符串

转载 作者:太空宇宙 更新时间:2023-11-03 20:50:18 24 4
gpt4 key购买 nike

<分区>

我创建了一个函数,通过使用 .Replace 方法删除各种字符来“过滤”字符串,我还使用 Substring 方法删除字符串末尾以“(”开头的任何内容。

一切正常,但我想知道是否有更好的优化方法来执行此操作,因为效率对我来说很重要。

public static string filterHorseName(string horseName)
{
horseName = horseName
.Replace(" ", "")
.Replace("`", "")
.Replace("-", "")
.Replace("'", "")
.Replace("´", "")
.Replace("’", "")
.ToLower();

int index = horseName.IndexOf("(");

if (index > 0)
{
horseName = horseName.Substring(0, index);
}

return horseName;
}

谢谢。

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