Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 270 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 270 Bytes

CQuery

Query language for C#

Examples

var matcher = SimpleQuery.Compile(@"(""word1"" OR ""word2"") AND ""word3""");

matcher("word1 word3"); // -> true
matcher("word2 word3"); // -> true
matcher("word3"); // -> false
matcher("word4"); // -> false