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.
C#で単語を部分文字列にするにはどうすればよいですか? たとえば、これは私の文です。「これは、例として使用している要約の例です。」
i want substring 2 word="これは"
簡単なアプローチはstring.Split()、単語を空白で分割し、を介して2つの単語を取得し、それらを空白で再度Enumerable.Take結合することです。
string.Split()
Enumerable.Take
string firstTwoWords = string.Join(" ", text.Split().Take(2));
追加することを忘れないでくださいusing System.Linq;
using System.Linq;
デモ