如何用" --------------------"分割字符串?在C#?

时间:2016-12-29 11:34:04

标签: c# arrays string split

我有一个这样的字符串:

string x = "Hello, my- name
--------------------
is Philip J. Fry
--------------------
and i like cartoons";

我必须用字符序列--------------------(所有20 -,而不仅仅是一个)拆分字符串x,我希望得到这样的结果:

result = {"Hello, my- name", "is Philip J. Fry", "and i like cartoons"}

我试过x.Split(" --------------------"),但Visual Studio说它'一个错误。 谢谢你的帮助。

0 个答案:

没有答案