Filter search match

Hello,
simple question: How to search in devices list matching just part of string?
I.e. I have VirtualParameters.global_ip, for devices it can be 5.6.7.8, 5.6.8.9, but I want to search both by writing 5.6. Now I just can write whole string (5.6.7.8) to find one device only.

Hi, use % as you would have in a SQL LIKE query. In your example, 5.6.% should match all devices that have the global_ip starting with “5.6.”

1 Like

Thank you! Just what I wanted.