如果我有像
这样的字符串string hello="HelloworldHellofriendsHelloPeople";
我想将它存储在像这样的字符串中
Helloworld
Hellofriends
HelloPeople
当找到字符串“hello”
时,必须更改该行感谢
答案 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