gpt4 book ai didi

c++ - CString::Mid() 是否有等效的 std::string?

转载 作者:行者123 更新时间:2023-12-01 14:53:27 25 4
gpt4 key购买 nike

std::string中是否有等效功能对于 CString::mid() ?

最佳答案

等效的 std::string::substr 具有以下接口(interface):

basic_string substr( size_type pos = 0, size_type count = npos ) const;
constexpr basic_string substr( size_type pos = 0, size_type count = npos ) const;

你可以像这样使用它:

std::string str = "0123456789abcdefghij";

// returns [pos, size())
std::string sub1 = str.substr(10);
std::cout << sub1 << '\n';

// returns [pos, pos+count)
std::string sub2 = str.substr(5, 3);

关于c++ - CString::Mid() 是否有等效的 std::string?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60429049/

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