我的解法如下:
Code
//引号与括号都是就近原则,即"adfa[[]]【aadfa"将拿到一个Label---"[",Label不会拿到空值"";除非在引号里面,否则也不会拿到",","]"
private static List<string> parseLabels(string inputString)
{
List<string> list = new List<string>();
bool isInBracket = false;//是不是在括号里面
bool isInInvertedComma = false;//是不是在引号里面
string oneLabel = "";//存储一个Label,如果Label为空则不添加
foreach (char item in inputString)
{
if (item == '[' || item == '【')
{
if (!isInBracket)//如果不在括号里面则开启括号,否则作为一个字符追加
isInBracket = true;
else
oneLabel += item;
}
else if (item == ']' || item == '】')
{
if (isInInvertedComma)//如果在引号里面则追加,否则结束字符,并关闭括号
oneLabel += item;
else
{
isInBracket = false;
if (oneLabel.Length != 0)
{
list.Add(oneLabel);
oneLabel = "";
}
}
}
else if (item == ',' || item == ',' || item == ' ')
{
if (isInBracket)//如果在括号里面并且在引号里面则追加,否则结束字符
{
if (isInInvertedComma)
oneLabel += item;
else if (oneLabel.Length != 0)
{
list.Add(oneLabel);
oneLabel = "";
}
}
}
else if (item == '\"')
{
if (isInBracket)
{
if (isInInvertedComma)//如果引号开启则关闭,并且结束字符,否则开启,前提是前面没字符,有的话就追加
{
list.Add(oneLabel);
oneLabel = "";
isInInvertedComma = false;
}
else if (oneLabel == "")
{
isInInvertedComma = true;
}
else
{
oneLabel += item;
}
}
}
else if (isInBracket)
oneLabel += item;
}
return list;
}
但有个小问题,因为是就近原则所以....
还是看下面这个吧
“["adfa,[[]]【aadfa】”我们希望是|"adfa|,|[[|,|aadfa|,但实际上他什么也拿不到因为引号没有结束,如果在最后面加个引号,他会拿到引号后面的所有,而实际上答案应该和上面的一样