标签: c++ string boost
如果指定了位置,则boost字符串是否有任何方法可以帮助我从字符串返回一定数量的字符。 例如
Left(std::string("Hello"),2)
可能会返回“他”。 我在here检查了库页面,但找不到任何问题。
答案 0 :(得分:3)
只需使用std::string的成员函数substr():
std::string
substr()
std::string("Hello").substr(0, 2);
这是live example。