文本1:
一些包含 } 和再次 } 或可能 } 的文本
文本2:
一些包含 ## 和再次 ## 或者可能是 ## 的文本
这里我的代码
string str1 = "Some text that contained } and again } or maybe }";
// Some time its contained ##
string[] words;
if (str1.Contains("}"))
{
words = str1.Split("}");
}
else if (str1.Contains ("##"))
{
words = str1.Split("##");
} else {
words = null;
}
我有 2 个错误
'string.Split(params char[])' 的最佳重载方法匹配有一些无效参数
和
参数 '1':不能从 'string' 转换为 'char[]' }