public RegexTestClass()
 {
     pattern = ".*\\B(\\d+)(?<output>SUCCESS)\\B.*";
     roptions = RegexOptions.IgnoreCase;
     internalMatchTimeout = TimeSpan.FromTicks(-10000L);
     factory = new RegexFactoryTestClass();
     Caps = new Hashtable {{0, 0}, {1, 1}, {2, 2}};
     CapNames = new Hashtable {{"0", 0}, {"1", 1}, {"output", 2}};
     capslist = new string[3];
     capslist[0] = "0";
     capslist[1] = "1";
     capslist[2] = "output";
     capsize = 3;
     base.InitializeReferences();
 }
예제 #2
0
 public RegexTestClass()
 {
     pattern              = ".*\\B(\\d+)(?<output>SUCCESS)\\B.*";
     roptions             = RegexOptions.IgnoreCase;
     internalMatchTimeout = TimeSpan.FromTicks(-10000L);
     factory              = new RegexFactoryTestClass();
     Caps = new Hashtable {
         { 0, 0 }, { 1, 1 }, { 2, 2 }
     };
     CapNames = new Hashtable {
         { "0", 0 }, { "1", 1 }, { "output", 2 }
     };
     capslist    = new string[3];
     capslist[0] = "0";
     capslist[1] = "1";
     capslist[2] = "output";
     capsize     = 3;
     base.InitializeReferences();
 }
예제 #3
0
 public RegexTestClass()
 {
     pattern              = ".*\\B(\\d+)(?<output>SUCCESS)\\B.*";
     roptions             = RegexOptions.IgnoreCase;
     internalMatchTimeout = TimeSpan.FromTicks(-10000L);
     factory              = new RegexFactoryTestClass();
     Caps = new Dictionary <int, int>();
     Caps.Add(0, 0);
     Caps.Add(1, 1);
     Caps.Add(2, 2);
     CapNames = new Dictionary <string, int>();
     CapNames.Add("0", 0);
     CapNames.Add("1", 1);
     CapNames.Add("output", 2);
     capslist    = new string[3];
     capslist[0] = "0";
     capslist[1] = "1";
     capslist[2] = "output";
     capsize     = 3;
     base.InitializeReferences();
 }
 public RegexTestClass()
 {
     pattern = ".*\\B(\\d+)(?<output>SUCCESS)\\B.*";
     roptions = RegexOptions.IgnoreCase;
     internalMatchTimeout = TimeSpan.FromTicks(-10000L);
     factory = new RegexFactoryTestClass();
     Caps = new Dictionary<int, int>();
     Caps.Add(0, 0);
     Caps.Add(1, 1);
     Caps.Add(2, 2);
     CapNames = new Dictionary<string, int>();
     CapNames.Add("0", 0);
     CapNames.Add("1", 1);
     CapNames.Add("output", 2);
     capslist = new string[3];
     capslist[0] = "0";
     capslist[1] = "1";
     capslist[2] = "output";
     capsize = 3;
     base.InitializeReferences();
 }