我有List<String>
一些提取的文本,我想验证列表是否符合此标准(可能包含多次此模式,并且每个都是列表中的一个项目):
0 // A zero should always be here when two numbers are together
\r\n // New line
number // any positive number
\r\n // New line
number // Positive number, .length < = 4
\r\n // New line
我想要的是验证第一个零是否始终存在,如果没有,则插入它以匹配以前的列表格式。
text --> Insert a zero after this text
\r\n
4
\r\n
1234
\r\n
至...
text
\r\n
0 --> the inserted zero
\r\n
4
\r\n
1234
\r\n
所以,我知道我可以使用.Insert(index, string)
内部循环,实际上我正在使用 for 循环列表,其中包含很多丑陋的验证
public Regex isNumber = new Regex(@"^\d+$");
// When the list is been build and a possible match is found call this method:
private void CheckIfZeroMustBeAdded(List<string> stringList)
{
int counter = 0;
for (int i = stringList.Count - 1; i > 1; i--)
{
if (stringList[i].Equals(Environment.NewLine))
{
// Do nothing
}
else if (counter == 2)
{
if (!stringList[i].Equals("0"))
{
stringList.Insert(i, string.Format("{0}{1}", Environment.NewLine,"0"));
break;
}
}
else if (ExtractionConst.isNumber.Match(stringList[i]).Success && !stringList[i].Equals("0")
{
// There are two numbers together
counter++;
}
else
{
break;
}
}
}
但是..有什么有效的方法可以做到这一点吗?