作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 C++ 中实现一个类似于 python 的切片方法。如果他们问我:
Slice("Hello World!",1) output = "ello World!"
Slice("Hello World!",0,5) output = "Hello"
Slice("Hello World!",0,-1) output = "Hello World"
Slice("Hello World!",3,-2) output = "lo Worl"
Slice("Hello World!",-5,-2) output = "orl"
Slice("Hello World!",14) output = " "
如果我的约束是这样,我将如何实现这种类似切片的方法
到目前为止,我已经尝试创建一个 forloop。我试图制作一个空字符串并尝试附加所需的索引,但我不明白如何。
最佳答案
使用 std::string::substr()
方法,例如:
std::string Slice(const std::string &str, ssize_t start, ssize_t end)
{
return str.substr(start, end-start);
}
如果你不能使用 substr()
(出于某些荒谬的原因),那么你可以使用更像这样的东西:
std::string Slice(const std::string &str, ssize_t start, ssize_t end)
{
if (start >= str.length())
return std::string();
if (end > str.length())
end = str.length();
return std::string(str.c_str() + start, end - start);
}
关于c++ - 如何从 C++ 中的字符串返回子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55680902/
我是一名优秀的程序员,十分优秀!