Page 1 of 1

How to filter on multiple SSIDs

Posted: Sun Mar 11, 2018 10:30 am
by disquette
Hello,
In the "Filter Network List" menu to filter several SSIDs to exclude from the display? this marks for an SSID but I can not find the delimiters
Thank you

Re: How to filter on multiple SSIDs

Posted: Sun Mar 11, 2018 6:03 pm
by arkasha
it's a Java regular expression, so something like

Code: Select all

^Linksys.*$|^Asus.*$
would select all APs whose SSIDs started with "Linksys" or "Asus" (the "|" character is the delimiter, the ^ and $ are "start" and "stop").

To exclude networks matching the expression, make sure to check the box directly below the input; "Show what doesn't match above regular expression"

Cheers,

-ark

Re: How to filter on multiple SSIDs

Posted: Thu Mar 15, 2018 6:11 pm
by disquette
Hello, thank you for your answer it's ok I can now exclude some SSID :D
My regex

Code: Select all

^orange.*$|^FreeWifi.*$|^SFR WiFi.*$
Thank