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.
私は文字列「s」を持っています。これは、物乞い(位置0)を開始し、スペースで終了することによってサブ文字列を取得したいので、たとえば、誰かがフルネームを入力した場合、私は彼らの名を決定することができます。
特定の文字が見つかるまで「検索」できる部分文字列関数であると誓ったかもしれません。前もって感謝します!
このようなものが機能します:
#include <string> #include <iostream> int main() { std::string str = "Person Name"; size_t pos = str.find(" "); std::cout << str.substr(0,pos); }