作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从 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/
我是一名优秀的程序员,十分优秀!