gpt4 book ai didi

c++搜索字符串列表的特定字符串

转载 作者:行者123 更新时间:2023-11-28 03:31:22 34 4
gpt4 key购买 nike

假设我们有一个特定的字符串:

string a[]={"ab","cd","ef"}

当我们输入字符串的第一个字符时,我们需要一个特定的字符串:例如:

input: c
output: "cd"

我当时的想法是:

假设我们将 char x 分配给输入值。然后使用循环遍历列表,但我不知道 char x 将如何停止循环并打印特定字符串。

另一个问题是在字符串中找到一个字母会有什么不同。例如输入:d 和输出:"cd"

最佳答案

我会回答你的两个问题(即使你应该每个“问题”只回答一个问题)。

要停止循环,您可以使用 break 语句。

要在字符串中查找字符(或字符串),您可以使用 std::string::find功能。

现在组合它们:

#include <string>
#include <iostream>
#include <algorithm>

int main()
{
std::string a[] = { "ab", "cd", "ef", "ce" };

char x;
std::cout << "Enter a letter: ";
std::cin >> x;

// If you want to stop as soon as you find a string with the letter
// you have to loop manually
std::cout << "\nFind first string containing letter:\n";
for (std::string s : a)
{
if (s.find(x) != std::string::npos)
{
std::cout << "Letter '" << x << "' found in string \"" << s << "\"\n";
break; // Stop the loop
}
}

// If you want to print all strings containing the letter you can
// use the `std::for_each` function
std::cout << "\nFind all strings containing letter:\n";
std::for_each(std::begin(a), std:end(a), [x](const std::string &s) {
if (s.find(x) != std::string::npos)
std::cout << "Letter '" << x << "' found in string \"" << s << "\"\n";
});
}

注意:以上代码包含来自"new"C++11 的两个特征。标准:Range-based for-loops ;和 lambda functions .

关于c++搜索字符串列表的特定字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12486909/

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