我在遇到此错误时遇到麻烦,并在Google上搜索了解决方案,但没有任何解决方案。


  例外:找不到字段:'System.Text.RegularExpressions.Regex.internalMatchTimeout'。


我的正则表达式是:

TheExpressions.Add("ExtractURL", @"\b(?:(?:https?|ftp|file)://|www\.|ftp\.)
  (?:\([-A-Z0-9+&@#/%=~_|$?!:,.]*\)|[-A-Z0-9+&@#/%=~_|$?!:,.])*
  (?:\([-A-Z0-9+&@#/%=~_|$?!:,.]*\)|[A-Z0-9+&@#/%=~_|$])");


使用选项进行编译的代码:

CI[Cnt++] = new RegexCompilationInfo((string)de.Value,        // the reg. ex pattern
                                                 RegexOptions.IgnoreCase | RegexOptions.CultureInvariant | RegexOptions.Multiline | RegexOptions.IgnorePatternWhitespace | RegexOptions.Compiled,   // Options to specify
                                                 (string)de.Key,          // name of the pattern
                                                 "TheRegularExpressions", // name space name
                                                 true);                  // Public?


谢谢。

最佳答案

似乎internalMatchTimeout字段是.NET 4.5中的新增功能。检查以确保您没有以某种方式混合.NET库版本。

09-15 16:39