gpt4 book ai didi

c++ - 如何选择字符串中的部分句子(C++)

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:07:41 25 4
gpt4 key购买 nike

我正在制作一个命令行程序,我想知道如何获取句子的不同部分,所以假设如果有人输入 cd Windows/Cursors,它会检测到(使用 if 语句)他们输入 cd 然后(在同一个 if 语句中)它将选择句子的其余部分,并将其设置为目录。这是我的代码:

#include "stdafx.h"
#include <string>
#include <iostream>

using namespace std;
int main()
{
while (1)
{
string directory = "C:/";
string promptInput;
string afterPrint;
string prompt = "| " + directory + " |> ";
cout << prompt;
cin >> promptInput;

if (promptInput == "")
{

}
else if (promptInput == "h:/")
{
directory = "H:/";
}
if (promptInput != "") {
cout << " " << afterPrint << "\n";
}
}
return 0;
}

我还没有尝试过任何东西,所以我愿意接受建议。

我们将不胜感激。

-Caleb Sim

最佳答案

您可以使用 std::stringstream 读取每一行并将其转换为流。然后将行分成不同的部分,根据行中的第一个单词创建响应。例如:

#include <sstream>
...
int main()
{
string line;
while(getline(cin, line))
{
stringstream ss(line);
string cmd;
if(ss >> cmd)
{
if(cmd == "cd")
{
string dir;
if(ss >> dir)
{
cout << "changedir: " << dir << "\n";
}
}
else if(cmd == "c:" || cmd == "c:\\")
{
cout << "changedir: " << cmd << "\n";
}
else
{
cout << "error\n";
}
}
}
return 0;
}

关于c++ - 如何选择字符串中的部分句子(C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47087641/

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