# \donttest{
sift(mtcars_lab) # Builds a dictionary without searching.
sift(mtcars_lab, .) # Show everything up to the print limit (by default, 25 matches).
sift(mtcars_lab, mileage) # Exact search for "mileage".
sift(mtcars_lab, "above avg", .dist = 1) # Fuzzy search (here, space -> underscore).
sift(mtcars_lab, "na", "column") # Orderless searches are always exact.
sift(mtcars_lab, "date|time") # Regular expression
sift(mtcars_lab, "cyl|gear", number) # Orderless search with regular expression
# }
Run the code above in your browser using DataLab