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.
「次を検索」機能を実装する方法は? 検索結果をまとめて表示するメソッドはありますが、必要な検索テキストを上から1つずつ検索する「次を検索」機能を実装したいと考えています。ボタンをクリックすると最初の出現が表示され、2 回目のクリックで 2 番目の出現が表示されます。
このようにしてみてください
int lastindex = 0; string str = "cd ce ce cesd cd sd cd"; str.IndexOf("cd", lastindex + 1);