如何从给定字符串复制带有开始和结束索引的子字符串,或者给出字符串的起始索引和长度.
解决方法
从std :: string,
std::string::substr
将根据起始索引和长度从现有的std :: string创建一个新的std :: string.给定最终索引确定必要的长度应该是微不足道的(尽管它取决于最终索引是包含还是排除).
如果您尝试从C样式字符串(NUL终止的char数组)创建子字符串,则可以使用std::string(const char* s,size_t n)
构造函数.例如:
const char* s = "hello world!"; size_t start = 3; size_t end = 6; // Assume this is an exclusive bound. std::string substring(s + start,end - start);