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.
# が含まれるテキスト ファイルがあります...次のようになります。
#Stuff 1 2 3 #MoreStuff a b c
std::string::find() 関数を使用して # の位置を取得し、そこから移動しようとしていますが、実際にこれをコーディングする方法がわかりません。
これは私の試みです:
int pos1=0; while(i<string.size()){ int next=string.find('#', pos1); i++;}
これは私が少し前に作ったものです...(Cで)
int char_pos(char c, char *str) { char *pch=strchr(str,c); return (pch-str)+1; }
それを C++ に移植してください。;)