如何拆分字符串并存储在不同的字符串数组中

use*_*820 1 c#

如果我有一个字符串

string hello="HelloworldHellofriendsHelloPeople";
Run Code Online (Sandbox Code Playgroud)

我想将它存储在这样的字符串中

Helloworld
Hellofriends
HelloPeople
Run Code Online (Sandbox Code Playgroud)

它必须在找到字符串"hello"时更改该行

谢谢

Red*_*ter 6

string hello = "HelloworldHellofriendsHelloPeople";
var a = hello.Split(new string[] { "Hello"}, StringSplitOptions.RemoveEmptyEntries);
foreach (string s in a)
    Console.WriteLine("Hello" + s);
Run Code Online (Sandbox Code Playgroud)