我正在从配置文件中读取以逗号分隔的字符串列表。我需要检查以下步骤
1) check to see if the string has `[`, if it is then remove or ignore...
2) split `,` `-` //which i am doing below...
到目前为止,这是我能做的;
string mediaString = "Cnn-[news],msnbc";
string[] split = mediaString.Split(new Char[] { ',', '-' }); //gets me the bracket
我想要的是忽略/删除括号中的字符串,所以最终结果应该是这样的:
mediaString =
Cnn
msnbc