gpt4 book ai didi

C# - 使用通配符比较两个字符串的最快方法

转载 作者:太空狗 更新时间:2023-10-30 00:22:10 30 4
gpt4 key购买 nike

有没有比这个函数更快的比较两个字符串的方法(使用通配符的空格)?

public static bool CustomCompare(this string word, string mask)
{

for (int index = 0; index < mask.Length; index++)
{
if (mask[index] != ' ') && (mask[index]!= word[index]))
{
return false;
}
}
return true;
}

示例:“S nt nce”与“Sentence”比较将返回 true。 (被比较的两者需要相同的长度)

最佳答案

如果 mask.length 小于 word.length,该函数将在 mask 结束时停止比较。在开始时进行字/掩码长度比较可以防止这种情况发生,也可以快速消除一些明显的不匹配。

关于C# - 使用通配符比较两个字符串的最快方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2241594/

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