gpt4 book ai didi

c++ - 如何从 CPP 中的字符串(文件名)中只删除一个连字符(第一次出现)?

转载 作者:行者123 更新时间:2023-11-27 23:38:35 25 4
gpt4 key购买 nike

如何从 CPP 中的字符串(文件名)中只删除一个连字符(第一次出现)?假设我的文件名为 DS-NMDX-2C219-FK。假设我只想删除第一个连字符?在DS-NMDX之间?

最佳答案

David 的回答基本上是正确的,但我们还需要添加保护以保持代码在所有可能的输入中正常工作,因为在输入字符串中可能找不到“-”。

示例代码如下:

int main(int argc, char *argv[])
{
std::string input = "DS-NMDX-2C219-FK";
// .find return the position of first occurence of '-'
auto pos = input.find('-');
// '-' might not exist in input, so need protection here
if (pos != std::string::npos) {
input.erase(pos, 1);
}
std::cout << input << std::endl;
return 0;
}

关于c++ - 如何从 CPP 中的字符串(文件名)中只删除一个连字符(第一次出现)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57302692/

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