我有这个片段来执行正则表达式搜索:
public IEnumerable<MyMatch> GetMyMatches()
{
Match m = myRegex.Match(Text, offset);
if (m != null && m.Success && m.Value != null && m.Value.Length > 0)
{
offset = m.Index+m.Length;
yield return new MyMatch() { Match=m, SomeFurtherInformation=... };
} else
yield break;
}
正如你所看到的,我在文本中走下了所有的秘密。
但如何反转搜索方向?
感谢您的帮助