嗨,我正在尝试使用解决方案
但是,它不适用于我的情况
string sentence = "A || ((B && C) || E && F ) && D || G";
string pattern = "(";
IList<int> indeces = new List<int>();
foreach (Match match in Regex.Matches(sentence, pattern))
{
indeces.Add(match.Index);
}
它产生错误,“解析”(“ - 不够)”。
我不确定我在这里做错了什么。
感谢任何帮助。
谢谢,
巴兰辛尼亚