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.
次のような電子メール アプリケーションからの Cc 電子メール アドレスの文字列があるとします。
hello@test.com; hello@test.co.uk; hi@test.com;
これらを別々の文字列に分割するにはどうすればよいですか?
emailAddresses.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);