将子字符串从const char *复制到std :: string

时间:2010-11-28 16:43:00

标签: c++

是否有任何可用的副本函数允许子字符串到std :: string?

示例 -

const char *c = "This is a test string message";

我想将substring“test”复制到std :: string。

5 个答案:

答案 0 :(得分:27)

您可以使用std::string iterator constructor使用C字符串的子字符串对其进行初始化,例如:

const char *sourceString = "Hello world!";
std::string testString(sourceString + 1, sourceString + 4);

答案 1 :(得分:3)

好吧,你可以写一个:

#include <assert.h>
#include <string.h>
#include <string>

std::string SubstringOfCString(const char *cstr,
    size_t start, size_t length)
{
    assert(start + length <= strlen(cstr));
    return std::string(cstr + start, length);
}

答案 2 :(得分:2)

您可以使用此std::string的构造函数:

string(const string& str, size_t pos, size_t n = npos);

用法:

std::cout << std::string("012345", 2, 4) << std::endl;

const char* c = "This is a test string message";
std::cout << std::string(c, 10, 4) << std::endl;

输出:

2345
test

(编辑:展示示例)

答案 3 :(得分:0)

您可能希望使用std::string_view(C ++ 17以上)作为std::string的替代方案:

#include <iostream>
#include <string_view>

int main()
{
    static const auto s{"This is a test string message"};
    std::string_view v{s + 10, 4};
    std::cout << v <<std::endl;
}

答案 4 :(得分:-1)

const char *c = "This is a test string message";
std::string str(c);
str.substr(0, 4); 
const char *my_c = str.c_str(); // my_c == "This"