Advertisement
Guest User

Untitled

a guest
Sep 29th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. @"^" +
  2. @"(\s*(?<" + attributeGroup + @">\S+)" +
  3. @"\s*" +
  4. @"(?<" + comparisonOperatorGroup + @">" + Regex.Escape("=") + "|" + Regex.Escape("!=") + "|" + Regex.Escape("<") + "|" + Regex.Escape(">") + "|" + Regex.Escape("<=") + "|" + Regex.Escape(">=") + "|" + Regex.Escape("LIKE") + @")" +
  5. @"\s*" +
  6. @"(?<" + valueGroup + @">(" + Regex.Escape("'") + @".*" + Regex.Escape("'") + @"|\S+))" +
  7. @"(\s*(?<" + logicalOperatorGroup + @">" + Regex.Escape("&&") + "|" + Regex.Escape("||") + "))?" +
  8. @"\s*)+$";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement