csvlens
csvlens copied to clipboard
Generalized filters
As of now we can filter rows only through regex. Support for a domain specific language for filtering would be nice
Example of filters can be :-
-
HP > 10
- filter rows where value of column HP is greater than 10 -
Name starts_with "Bee"
- filter rows where column Name starts with Bee -
Type1 == "Bug" and Type2 == "Poison"
- combine multiple conditions using and/or