예제 #1
0
 public void TestRegexWithLeftBracketQuoted()
 {
     string regex = "\\(.+";
     string source = "(hello world";
     RegexSelector regexSelector = new RegexSelector(regex);
     string select = regexSelector.Select(source);
     Assert.AreEqual(select, source);
 }