Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果指定了字符串的位置,boost string 是否有任何方法可以帮助我从字符串中返回一定数量的字符。例如像
Left(std::string("Hello"),2)
可能会返回“他”。我在这里查看了图书馆页面,但找不到任何东西。
只需使用std::string的成员函数substr():
std::string
substr()
std::string("Hello").substr(0, 2);
这是一个活生生的例子。