Data Tools

Data Filter

Filter datasets using custom rules with multiple operators and conditions

Input data (JSON array)
Filter rules
Filter result
Output will appear here...
Example input
[
  { "id": 1, "name": "Product A", "category": "Electronics", "price": 299.99, "inStock": true },
  { "id": 2, "name": "Product B", "category": "Books", "price": 19.99, "inStock": false },
  { "id": 3, "name": "Product C", "category": "Electronics", "price": 499.99, "inStock": true }
]
Example filter rules
  • Category equals "Electronics"
  • Price between 100 and 400
  • Name contains "Product"
  • InStock equals true
  • ID in list "1,3"