gpt4 book ai didi

c++ 小写大写字母没有区别

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

我有一种方法可以在其他字符串中查找字符串的出现。我的问题是如何让它在小写字母和大写字母之间没有区别?

int occurrences = 0;
string::size_type start = 0;

while ((start = base_string.find(to_find_occurrences_of, start)) != string::npos) {
++occurrences;
start += to_find_occurrences_of.length();
}

最佳答案

为什么不在搜索之前将两个字符串都设置为大写呢?

关于c++ 小写大写字母没有区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43311972/

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