gpt4 book ai didi

c# - 不区分大小写的字符串搜索

转载 作者:太空狗 更新时间:2023-10-29 22:55:53 25 4
gpt4 key购买 nike

使用不区分大小写的搜索在文本中搜索单词的最快最有效的方法是什么。

例如,这是我要搜索的文本:

string textTosearch = "Here is a paragraph or Some text. Here is some more text".

如果我想找到“Some”和“some”的索引,是否有 .Net 类可以执行此操作,或者我是否需要使用正则表达式之类的东西。

非常感谢您的想法。

我正在使用 visual studio 2008。

最佳答案

看看 IndexOf方法:

textTosearch.IndexOf("some", StringComparison.OrdinalIgnoreCase);

Other overloads of this method允许您指定起始索引和要检查的字符数。

关于c# - 不区分大小写的字符串搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2388287/

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