// search prop with text value "Apple"
// case sensetive by default
let props = list.search("Apple");
list.case_sensitive = false;
// search props with text value "Apple", "apple", "aPpLe" and etc
props = list.search("Apple");
// search props started with text "apple"
props = list.search("%Apple");
// search props ended with text "apple"
props = list.search("Apple%");
// search props contains text "apple"
props = list.search("%Apple%");