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.
ブースト文字列には、位置が指定されている場合に文字列から特定の文字数を返すのに役立つメソッドがありますか? たとえば、次のようなもの
Left(std::string("Hello"),2)
「彼」を返すかもしれません。こちらのライブラリページを確認しましたが、何も見つかりませんでした。
std::stringのメンバー関数を使用するだけですsubstr():
std::string
substr()
std::string("Hello").substr(0, 2);
これが実際の例です。