gpt4 book ai didi

c# - ToLower() 不是小写字符串?

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

 List<string> expectedResult = new List<string> { "article i", "article ii", "article iii" };

string result = Selenium.GetText("result_list");
if (expectedResult.Any(result.ToLower().Contains))
{
// do something
}

我得到 result = "Article I",但 expectedResult.Any(result.ToLower().Contains) 返回 false。不确定为什么 ToLower() 不起作用?

任何人都可以审查我的工作,并让我知道我是否在这里做事?

最佳答案

试试这个:

List<string> expectedResult = new List<string> { "article i", "article ii", "article iii" };

string result = Selenium.GetText("result_list");
if (expectedResult.Contains(result.ToLower()))
{
// do something
}

关于c# - ToLower() 不是小写字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6850862/

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