gpt4 book ai didi

c++ - 读取字符串最后一行的最快方法?

转载 作者:太空狗 更新时间:2023-10-29 23:38:48 25 4
gpt4 key购买 nike

我想知道读取 std::string 对象中最后一行的最快方法。
从技术上讲,以最快的方式在最后一次出现 \n 之后的字符串?

最佳答案

这可以像这样只使用 string::find_last_ofstring::substr 来完成

std::string get_last_line(const std::string &str)
{
auto position = str.find_last_of('\n');
if (position == std::string::npos)
return str;
else
return str.substr(position + 1);
}

参见:example

关于c++ - 读取字符串最后一行的最快方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53712846/

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