Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. new FilterItem("John", "name"); //every row, which contains the string "John" in the column called "name"
  2.  
  3. new FilterItem("John", "name|address|phone"); //every row, which contains the string "John" in the column called "name" or "address" or "phone"
  4.  
  5. new FilterItem("John|Jane", "name|address|phone"); //every row, which contains the string "John" or "Jane" in the column called "name" or "address" or "phone"