how to filter for given set of values Filter Example : bthci_evt.code == 0x03 or bthci_evt.code == 0x05 or bthci_evt.code == 0x01 or bthci_evt.code == 0x04 Which is very long when keep adding with other filter option. Hence, is there any alternative option for simple filter like: bthci_evt.code in {0x03 or 0x05 or 0x01 or 0x04} asked 08 Aug '17, 01:49 sghorai |
3 Answers:
Thx.. here is the already available solution that worked and is called Membership Operator:
answered 11 Aug '17, 02:29 sghorai edited 11 Aug '17, 02:32 sindy |
The syntax you look for is not supported in display filters. So your only chance to simplify the filter expression is to use logical operations like answered 08 Aug '17, 02:31 sindy ok. thx for your information.. (08 Aug '17, 03:52) sghorai |
No, but that might be a useful extension, so you could submit an enhancement request for that feature on the Wireshark Bugzilla. answered 08 Aug '17, 12:32 Guy Harris ♦♦ |
As your post answers your question, I've convered it to an Answer. As it is the correct one, please mark it as a correct answer by clicking the checkmark icon next to it. No one else but the one who has posted the Question can do this.