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

时间:2012-09-21 18:07:46

标签: c#

如果我有像

这样的字符串
string hello="HelloworldHellofriendsHelloPeople";

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

Helloworld
Hellofriends
HelloPeople

当找到字符串“hello”

时,必须更改该行

感谢

5 个答案:

答案 0 :(得分:6)

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

答案 1 :(得分:4)

 var result = hello.Split(new[] { "Hello" }, 
                    StringSplitOptions.RemoveEmptyEntries)
               .Select(s => "Hello" + s);

答案 2 :(得分:2)

您可以使用此正则表达式

(?=Hello)

然后使用正则表达式的split方法分割字符串!

您的代码将是:

      String matchpattern = @"(?=Hello)";
      Regex re = new Regex(matchpattern); 
      String[] splitarray = re.Split(sourcestring);

答案 3 :(得分:0)

您可以使用此代码 - 基于string.Replace

var replace = hello.Replace( "Hello", "-Hello" );
var result = replace.Split("-");

答案 4 :(得分:0)

您可以使用string.split拆分单词“Hello”,然后将“Hello”追加回字符串。

string[] helloArray = string.split("Hello");
foreach(string hello in helloArray)
{
    hello = "Hello" + hello;
}

这将提供您想要的输出

Helloworld
Hellofriends
HelloPeople